summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_count_checkParams.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/SplFixedArray_count_checkParams.phpt')
-rw-r--r--ext/spl/tests/SplFixedArray_count_checkParams.phpt16
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/spl/tests/SplFixedArray_count_checkParams.phpt b/ext/spl/tests/SplFixedArray_count_checkParams.phpt
new file mode 100644
index 0000000..5cbe2e8
--- /dev/null
+++ b/ext/spl/tests/SplFixedArray_count_checkParams.phpt
@@ -0,0 +1,16 @@
+--TEST--
+Makes sure that an integer cannot be passed into the count() method of the splFixedArray.
+--CREDITS--
+PHPNW Test Fest 2009 - Rick Ogden
+--FILE--
+<?php
+$ar = new SplFixedArray(3);
+$ar[0] = 1;
+$ar[1] = 2;
+$ar[2] = 3;
+
+echo $ar->count(3);
+?>
+--EXPECTF--
+Warning: SplFixedArray::count() expects exactly 0 parameters, 1 given in %s on line %d
+