Annotation of embedaddon/php/ext/standard/tests/array/next_error.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Test next() function : error conditions - Pass incorrect number of arguments
        !             3: --FILE--
        !             4: <?php
        !             5: /* Prototype  : mixed next(array $array_arg)
        !             6:  * Description: Move array argument's internal pointer to the next element and return it 
        !             7:  * Source code: ext/standard/array.c
        !             8:  */
        !             9: 
        !            10: /*
        !            11:  * Pass incorrect number of arguments to next() to test behaviour
        !            12:  */
        !            13: 
        !            14: echo "*** Testing next() : error conditions ***\n";
        !            15: 
        !            16: // Zero arguments
        !            17: echo "\n-- Testing next() function with Zero arguments --\n";
        !            18: var_dump( next() );
        !            19: 
        !            20: //Test next with one more than the expected number of arguments
        !            21: echo "\n-- Testing next() function with more than expected no. of arguments --\n";
        !            22: $array_arg = array(1, 2);
        !            23: $extra_arg = 10;
        !            24: var_dump( next($array_arg, $extra_arg) );
        !            25: ?>
        !            26: ===DONE===
        !            27: --EXPECTF--
        !            28: *** Testing next() : error conditions ***
        !            29: 
        !            30: -- Testing next() function with Zero arguments --
        !            31: 
        !            32: Warning: next() expects exactly 1 parameter, 0 given in %s on line %d
        !            33: NULL
        !            34: 
        !            35: -- Testing next() function with more than expected no. of arguments --
        !            36: 
        !            37: Warning: next() expects exactly 1 parameter, 2 given in %s on line %d
        !            38: NULL
        !            39: ===DONE===

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