summaryrefslogtreecommitdiff
path: root/ext/spl/tests/limititerator_seek.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/limititerator_seek.phpt')
-rw-r--r--ext/spl/tests/limititerator_seek.phpt18
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/spl/tests/limititerator_seek.phpt b/ext/spl/tests/limititerator_seek.phpt
new file mode 100644
index 0000000..a59a49b
--- /dev/null
+++ b/ext/spl/tests/limititerator_seek.phpt
@@ -0,0 +1,18 @@
+--TEST--
+SPL: LimitIterator seek() arguments
+--CREDITS--
+Roshan Abraham (roshanabrahams@gmail.com)
+TestFest London May 2009
+--FILE--
+<?php
+
+$a = array(1,2,3);
+$lt = new LimitIterator(new ArrayIterator($a));
+
+$lt->seek(1,1); // Should throw a warning as seek expects only 1 argument
+
+?>
+--EXPECTF--
+
+Warning: LimitIterator::seek() expects exactly 1 parameter, 2 given in %s on line %d
+