summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/array_unshift_error.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/array/array_unshift_error.phpt')
-rw-r--r--ext/standard/tests/array/array_unshift_error.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/ext/standard/tests/array/array_unshift_error.phpt b/ext/standard/tests/array/array_unshift_error.phpt
deleted file mode 100644
index d37abb22e0..0000000000
--- a/ext/standard/tests/array/array_unshift_error.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-Test array_unshift() function : error conditions
---FILE--
-<?php
-/* Prototype : int array_unshift(array $array[, mixed ...])
- * Description: Pushes elements onto the beginning of the array
- * Source code: ext/standard/array.c
-*/
-
-echo "*** Testing array_unshift() : error conditions ***\n";
-
-// Zero arguments
-echo "\n-- Testing array_unshift() function with Zero arguments --\n";
-var_dump( array_unshift() );
-echo "Done";
-?>
---EXPECTF--
-*** Testing array_unshift() : error conditions ***
-
--- Testing array_unshift() function with Zero arguments --
-
-Warning: array_unshift() expects at least 1 parameter, 0 given in %s on line %d
-NULL
-Done