ru_php/ext/bcmath/tests/bccomp_error.phpt

24 lines
386 B
PHP

--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