Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testCreateDBRef PHP Method

testCreateDBRef() public method

public testCreateDBRef ( )
    public function testCreateDBRef()
    {
        $collection = $this->getCollection();
        $reference = $collection->createDBRef(['_id' => 'foo']);
        $this->assertSame(['$ref' => 'test', '$id' => 'foo'], $reference);
    }
MongoCollectionTest