ru_php/ext/bcmath/tests/bcdiv_error2.phpt

24 lines
381 B
PHP

--TEST--
bcdiv() requires well-formed values
--EXTENSIONS--
bcmath
--FILE--
<?php
try {
bcdiv('a', '1');
} catch (\ValueError $e) {
echo $e->getMessage() . PHP_EOL;
}
try {
bcdiv('1', 'a');
} catch (\ValueError $e) {
echo $e->getMessage() . PHP_EOL;
}
?>
--EXPECT--
bcdiv(): Argument #1 ($num1) is not well-formed
bcdiv(): Argument #2 ($num2) is not well-formed