summaryrefslogtreecommitdiff
path: root/ext/spl/tests/spl_iterator_caching_count_error.phpt
blob: 68d92dcf38b49e38d89a5db7b232aee060ef821f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
SPL: Caching iterator count() cache 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->count();
  echo "Should have caused an exception";
} catch (BadMethodCallException $e) {
  echo "Exception raised\n";
}

?>
===DONE===
--EXPECT--
Exception raised
===DONE===