xref: /php-src/ext/bcmath/tests/bcceil_error.phpt (revision 53593927)
1--TEST--
2bcceil() function with error
3--EXTENSIONS--
4bcmath
5--FILE--
6<?php
7try {
8    bcceil('hoge');
9} catch (Throwable $e) {
10    echo $e->getMessage()."\n";
11}
12
13try {
14    bcceil('0.00.1');
15} catch (Throwable $e) {
16    echo $e->getMessage()."\n";
17}
18?>
19--EXPECT--
20bcceil(): Argument #1 ($num) is not well-formed
21bcceil(): Argument #1 ($num) is not well-formed
22