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

testFindReturnsCursor() public method

    public function testFindReturnsCursor()
    {
        $this->prepareData();
        $collection = $this->getCollection();
        $this->assertInstanceOf('MongoCursor', $collection->find());
    }
MongoCollectionTest