Annotation of embedaddon/php/ext/standard/tests/general_functions/get_resource_type_error.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Test get_resource_type() function : error conditions 
                      3: --FILE--
                      4: <?php
                      5: /* Prototype  : string get_resource_type  ( resource $handle  )
                      6:  * Description:  Returns the resource type 
                      7:  * Source code: Zend/zend_builtin_functions.c
                      8:  */            
                      9: 
                     10: echo "*** Testing get_resource_type() : error conditions ***\n";
                     11: 
                     12: echo "\n-- Testing get_resource_type() function with Zero arguments --\n";
                     13: var_dump( get_resource_type() );
                     14: 
                     15: echo "\n-- Testing get_resource_type() function with more than expected no. of arguments --\n";
                     16: $res = fopen(__FILE__, "r");
                     17: $extra_arg = 10;
                     18: var_dump( get_resource_type($res, $extra_arg) );
                     19: 
                     20: ?>
                     21: ===DONE===
                     22: --EXPECTF--
                     23: *** Testing get_resource_type() : error conditions ***
                     24: 
                     25: -- Testing get_resource_type() function with Zero arguments --
                     26: 
                     27: Warning: get_resource_type() expects exactly 1 parameter, 0 given in %s on line %d
                     28: NULL
                     29: 
                     30: -- Testing get_resource_type() function with more than expected no. of arguments --
                     31: 
                     32: Warning: get_resource_type() expects exactly 1 parameter, 2 given in %s on line %d
                     33: NULL
                     34: ===DONE===

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