php-src/ext/standard/tests/math/pi_basic.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

14 lines
269 B
PHP

--TEST--
Test pi() - basic function test pi()
--INI--
precision=14
--FILE--
<?php
echo pi(), "\n";
echo M_PI, "\n";
// N.B pi() ignores all specified arguments no error
// messages are produced if arguments are spcified.
?>
--EXPECT--
3.1415926535898
3.1415926535898