Alcaeus\MongoDbAdapter\Tests\Mongo\MongoCursorTest::testCountAfterIteration PHP Method

testCountAfterIteration() public method

    public function testCountAfterIteration()
    {
        $this->prepareData();
        $collection = $this->getCollection();
        $cursor = $collection->find(['foo' => 'bar']);
        // Ensure the generator is consumed and thus closed
        iterator_to_array($cursor);
        $this->assertSame(2, $cursor->count(true));
    }