Annotation of embedaddon/php/ext/standard/tests/class_object/get_declared_classes_error_001.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Test get_declared_classes() function : error conditions 
                      3: --FILE--
                      4: <?php
                      5: /* Prototype  : proto array get_declared_classes()
                      6:  * Description: Returns an array of all declared classes. 
                      7:  * Source code: Zend/zend_builtin_functions.c
                      8:  * Alias to functions: 
                      9:  */
                     10: 
                     11: echo "*** Testing get_declared_classes() : error conditions ***\n";
                     12: 
                     13: // One argument
                     14: echo "\n-- Testing get_declared_classes() function with one argument --\n";
                     15: $extra_arg = 10;;
                     16: var_dump( get_declared_classes($extra_arg) );
                     17: 
                     18: echo "Done";
                     19: ?>
                     20: --EXPECTF--
                     21: *** Testing get_declared_classes() : error conditions ***
                     22: 
                     23: -- Testing get_declared_classes() function with one argument --
                     24: 
                     25: Warning: get_declared_classes() expects exactly 0 parameters, 1 given in %s on line 13
                     26: NULL
                     27: Done

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