1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/standard/tests/math/atan2_error.phpt
2008-02-21 17:47:33 +00:00

15 lines
329 B
PHP

--TEST--
Test atan2() - wrong params atan2()
--FILE--
<?php
atan2();
atan2(36);
atan2(36,25,0);
?>
--EXPECTF--
Warning: atan2() expects exactly 2 parameters, 0 given in %s on line %d
Warning: atan2() expects exactly 2 parameters, 1 given in %s on line %d
Warning: atan2() expects exactly 2 parameters, 3 given in %s on line %d