- Test addition

This commit is contained in:
Marcus Boerger 2006-03-03 22:58:13 +00:00
parent b9630ddf52
commit 742c59862d

View File

@ -34,6 +34,9 @@ catch(OutOfBoundsException $e)
echo $e->getMessage() . "\n";
}
$it->next();
var_dump($it->valid());
?>
===DONE===
<?php exit(0); ?>
@ -45,4 +48,5 @@ int(2)
Cannot seek to 0 which is below the offset 1
int(3)
Cannot seek to 3 which is behind offest 1 plus count 2
bool(false)
===DONE===