Alcaeus\MongoDbAdapter\Tests\Mongo\MongoTimestampTest::testCreateWithGlobalInc PHP Method

testCreateWithGlobalInc() public method

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