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

testCreateWithBsonTimestamp() public method

    public function testCreateWithBsonTimestamp()
    {
        $this->skipTestUnless(in_array(TypeInterface::class, class_implements('MongoTimestamp')));
        $bsonTimestamp = new \MongoDB\BSON\Timestamp(987654321, 1234567890);
        $timestamp = new \MongoTimestamp($bsonTimestamp);
        $this->assertAttributeSame(1234567890, 'sec', $timestamp);
        $this->assertAttributeSame(987654321, 'inc', $timestamp);
    }