diff options
Diffstat (limited to 'ext/standard/tests/math/decbin_error.phpt')
-rw-r--r-- | ext/standard/tests/math/decbin_error.phpt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ext/standard/tests/math/decbin_error.phpt b/ext/standard/tests/math/decbin_error.phpt new file mode 100644 index 000000000..a350cee7f --- /dev/null +++ b/ext/standard/tests/math/decbin_error.phpt @@ -0,0 +1,13 @@ +--TEST-- +Test decbin() - wrong params +--FILE-- +<?php +decbin(); +decbin(23,2,true); +?> +--EXPECTF-- + +Warning: Wrong parameter count for decbin() in %s on line 2 + +Warning: Wrong parameter count for decbin() in %s on line 3 + |