Alcaeus\MongoDbAdapter\Tests\Mongo\MongoTimestampTest::testCreateWithGlobalInc PHP 메소드

testCreateWithGlobalInc() 공개 메소드

    public function testCreateWithGlobalInc()
    {
        $timestamp1 = new \MongoTimestamp(1234567890);
        $timestamp2 = new \MongoTimestamp(1234567890);
        $this->assertAttributeSame(0, 'inc', $timestamp1);
        $this->assertAttributeSame(1, 'inc', $timestamp2);
    }