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) {
|
2006-04-14 10:20:19 +00:00
|
|
|
$this->assertEqual(gettype($entity->name),"string");
|
2006-04-13 20:37:28 +00:00
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
$this->assertTrue($i == $entities->count());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|