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

testCreate() public method

public testCreate ( )
    public function testCreate()
    {
        $timestamp = new \MongoTimestamp(1234567890, 987654321);
        $this->assertAttributeSame(1234567890, 'sec', $timestamp);
        $this->assertAttributeSame(987654321, 'inc', $timestamp);
        $this->assertSame('1234567890', (string) $timestamp);
        return $timestamp;
    }