
| Path : /proc/thread-self/root/usr/src/php/ext/spl/tests/ |
| Current File : //proc/thread-self/root/usr/src/php/ext/spl/tests/spl_iterator_caching_getcache_error.phpt |
--TEST--
SPL: Caching iterator getCache failure
--CREDITS--
Lukasz Andrzejak meltir@meltir.com
#testfest London 2009-05-09
--FILE--
<?php
$i = new ArrayIterator(array(1,1,1,1,1));
$i = new CachingIterator($i);
try {
$i->getCache();
echo "Should have caused an exception";
} catch (BadMethodCallException $e) {
echo "Exception raised\n";
}
?>
===DONE===
--EXPECT--
Exception raised
===DONE===