diff options
Diffstat (limited to 'ext/standard/tests/math/fmod_error.phpt')
-rw-r--r-- | ext/standard/tests/math/fmod_error.phpt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ext/standard/tests/math/fmod_error.phpt b/ext/standard/tests/math/fmod_error.phpt new file mode 100644 index 0000000..42a6ad1 --- /dev/null +++ b/ext/standard/tests/math/fmod_error.phpt @@ -0,0 +1,17 @@ +--TEST-- +Test fmod() - wrong params test fmod() +--INI-- +precision=14 +--FILE-- +<?php +fmod(); +fmod(23); +fmod(23,2,true); +?> +--EXPECTF-- + +Warning: fmod() expects exactly 2 parameters, 0 given in %s on line 2 + +Warning: fmod() expects exactly 2 parameters, 1 given in %s on line 3 + +Warning: fmod() expects exactly 2 parameters, 3 given in %s on line 4 |