php-src/ext/bcmath/tests/bccomp.phpt
Jorg Adam Sowa ee22612856
Extend tests of bcmath extension (#11563)
Add coverage for:

 * different formats of zero (0, 0.0)
 * small integers and decimals
 * large integers and large decimals with large fractional part
 * negative numbers for all of the above ones
2023-07-05 17:43:30 +01:00

26 lines
416 B
PHP

--TEST--
bccomp() function
--EXTENSIONS--
bcmath
--INI--
bcmath.scale=0
--FILE--
<?php
echo bccomp("-1", "5", 4), "\n";
echo bccomp("1928372132132819737213", "8728932001983192837219398127471"), "\n";
echo bccomp("1.00000000000000000001", "1", 2), "\n";
echo bccomp("97321", "2321"), "\n";
echo bccomp("0", "14"), "\n";
echo bccomp("1", "0"), "\n";
echo bccomp("0.000", "0", 3), "\n";
?>
--EXPECT--
-1
-1
0
1
-1
1
0