diff options
Diffstat (limited to 'ext/bcmath/tests/bccomp_error.phpt')
-rw-r--r-- | ext/bcmath/tests/bccomp_error.phpt | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ext/bcmath/tests/bccomp_error.phpt b/ext/bcmath/tests/bccomp_error.phpt new file mode 100644 index 0000000000..90645c52f7 --- /dev/null +++ b/ext/bcmath/tests/bccomp_error.phpt @@ -0,0 +1,23 @@ +--TEST-- +bccomp() requires well-formed values +--EXTENSIONS-- +bcmath +--FILE-- +<?php + +try { + bccomp('a', '1'); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + +try { + bccomp('1', 'a'); +} catch (\ValueError $e) { + echo $e->getMessage() . PHP_EOL; +} + +?> +--EXPECT-- +bccomp(): Argument #1 ($num1) is not well-formed +bccomp(): Argument #2 ($num2) is not well-formed |