1
0
mirror of synced 2025-02-20 14:13:15 +03:00
doctrine2/tests/BatchIteratorTestCase.class.php

16 lines
480 B
PHP
Raw Normal View History

2006-04-13 20:37:28 +00:00
<?php
require_once("UnitTestCase.class.php");
class Doctrine_BatchIteratorTestCase extends Doctrine_UnitTestCase {
public function testIterator() {
$graph = new Doctrine_DQL_Parser($this->session);
$entities = $graph->query("FROM Entity");
$i = 0;
foreach($entities as $entity) {
$this->assertTrue(is_string($entity->name));
$i++;
}
$this->assertTrue($i == $entities->count());
}
}
?>