Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCollectionTest::testFindReturnsCursor PHP 메소드

testFindReturnsCursor() 공개 메소드

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