Alcaeus\MongoDbAdapter\Tests\Mongo\MongoIdTest::testCreateWithObjectId PHP Method

testCreateWithObjectId() public method

    public function testCreateWithObjectId()
    {
        $this->skipTestIf(extension_loaded('mongo'));
        $original = '54203e08d51d4a1f868b456e';
        $objectId = new ObjectID($original);
        $id = new \MongoId($objectId);
        $this->assertSame($original, (string) $id);
        $this->assertAttributeNotSame($objectId, 'objectID', $id);
    }