1
0
mirror of https://github.com/php/php-src.git synced 2026-04-03 22:22:18 +02:00
Files
archived-php-src/ext/spl/tests/array_021.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

30 lines
350 B
PHP

--TEST--
SPL: ArrayObject::seek() and exceptions
--FILE--
<?php
class foo extends ArrayObject
{
public function seek($key)
{
echo __METHOD__ . "($key)\n";
throw new Exception("hi");
}
}
$test = new foo(array(1,2,3));
try
{
$test->seek('bar');
}
catch (Exception $e)
{
echo "got exception\n";
}
?>
--EXPECT--
foo::seek(bar)
got exception