Doctrine\MongoDB\Tests\Query\BuilderTest::testQueryIsIterable PHP Method

testQueryIsIterable() public method

public testQueryIsIterable ( )
    public function testQueryIsIterable()
    {
        $qb = $this->getTestQueryBuilder();
        $query = $qb->getQuery();
        $this->assertInstanceOf('IteratorAggregate', $query);
        $this->assertInstanceOf('Doctrine\\MongoDB\\IteratorAggregate', $query);
    }
BuilderTest