1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 00:18:23 +02:00
Files
archived-php-src/ext/standard/tests/math/atan2_error.phpt
T

16 lines
291 B
PHP

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