php-src/ext/standard/tests/math/hypot_error.phpt
2008-02-06 08:44:24 +00:00

19 lines
318 B
PHP

--TEST--
Test hypot() - wrong params test hypot()
--INI--
precision=14
--FILE--
<?php
hypot();
hypot(36);
hypot(36,25,0);
?>
--EXPECTF--
Warning: Wrong parameter count for hypot() in %s on line 2
Warning: Wrong parameter count for hypot() in %s on line 3
Warning: Wrong parameter count for hypot() in %s on line 4