Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testGetDBRef PHP Méthode

testGetDBRef() public méthode

public testGetDBRef ( )
    public function testGetDBRef()
    {
        $collection = $this->getCollection();
        $insertDocument = ['_id' => 1, 'foo' => 'bar'];
        $collection->insert($insertDocument);
        $document = $collection->getDBRef(['$ref' => 'test', '$id' => 1]);
        $this->assertEquals($insertDocument, $document);
    }
MongoCollectionTest