summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests/bcmul_error.phpt
blob: 361b46163ee63054d143e25ec1fa67eb733911e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--TEST--
bcmul() requires well-formed values
--EXTENSIONS--
bcmath
--FILE--
<?php

try {
    bcmul('a', '1');
} catch (\ValueError $e) {
    echo $e->getMessage() . PHP_EOL;
}

try {
    bcmul('1', 'a');
} catch (\ValueError $e) {
    echo $e->getMessage() . PHP_EOL;
}

?>
--EXPECT--
bcmul(): Argument #1 ($num1) is not well-formed
bcmul(): Argument #2 ($num2) is not well-formed