Annotation of embedaddon/php/ext/standard/tests/math/atan2_error.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Test atan2() - wrong params atan2()
        !             3: --FILE--
        !             4: <?php
        !             5: atan2();
        !             6: atan2(36);
        !             7: atan2(36,25,0);
        !             8: ?>
        !             9: --EXPECTF--
        !            10: Warning: atan2() expects exactly 2 parameters, 0 given in %s on line %d
        !            11: 
        !            12: Warning: atan2() expects exactly 2 parameters, 1 given in %s on line %d
        !            13: 
        !            14: Warning: atan2() expects exactly 2 parameters, 3 given in %s on line %d

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>