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

testCreate() 공개 메소드

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;
    }