1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 03:22:58 +02:00
Files
archived-php-src/ext/spl/tests/iterator_009.phpt
Fabien Villepinte a555cc0b3d Clean DONE tags from tests
Remove most of the `===DONE===` tags and its variations.
Keep `===DONE===` if the test output otherwise becomes empty.

Closes GH-4872.
2019-11-07 21:31:47 +01:00

43 lines
578 B
PHP

--TEST--
SPL: EmptyIterator
--FILE--
<?php
class EmptyIteratorEx extends EmptyIterator
{
function rewind()
{
echo __METHOD__ . "\n";
parent::rewind();
}
function valid()
{
echo __METHOD__ . "\n";
return parent::valid();
}
function current()
{
echo __METHOD__ . "\n";
return parent::current();
}
function key()
{
echo __METHOD__ . "\n";
return parent::key();
}
function next()
{
echo __METHOD__ . "\n";
parent::next();
}
}
foreach (new EmptyIteratorEx() as $v) {
var_dump($v);
}
?>
--EXPECT--
EmptyIteratorEx::rewind
EmptyIteratorEx::valid