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

testConvertToBson() public method

public testConvertToBson ( MongoTimestamp $timestamp )
$timestamp MongoTimestamp
    public function testConvertToBson(\MongoTimestamp $timestamp)
    {
        $this->skipTestUnless($timestamp instanceof TypeInterface);
        $bsonTimestamp = $timestamp->toBSONType();
        $this->assertInstanceOf('MongoDB\\BSON\\Timestamp', $bsonTimestamp);
        $this->assertSame('[987654321:1234567890]', (string) $bsonTimestamp);
    }