php-src/ext/ctype/tests/ctype_alpha_error.phpt
2008-03-17 09:52:02 +00:00

40 lines
1.1 KiB
PHP

--TEST--
Test ctype_alpha() function : error conditions - Incorrect number of arguments
--FILE--
<?php
/* Prototype : bool ctype_alpha(mixed $c)
* Description: Checks for alphabetic character(s)
* Source code: ext/ctype/ctype.c
*/
/*
* Pass an incorrect number of arguments to ctype_alpha() to test behaviour
*/
echo "*** Testing ctype_alpha() : error conditions ***\n";
// Zero arguments
echo "\n-- Testing ctype_alpha() function with Zero arguments --\n";
var_dump( ctype_alpha() );
//Test ctype_alpha with one more than the expected number of arguments
echo "\n-- Testing ctype_alpha() function with more than expected no. of arguments --\n";
$c = 1;
$extra_arg = 10;
var_dump( ctype_alpha($c, $extra_arg) );
?>
===DONE===
--EXPECTF--
*** Testing ctype_alpha() : error conditions ***
-- Testing ctype_alpha() function with Zero arguments --
Warning: ctype_alpha() expects exactly 1 parameter, 0 given in %s on line %d
NULL
-- Testing ctype_alpha() function with more than expected no. of arguments --
Warning: ctype_alpha() expects exactly 1 parameter, 2 given in %s on line %d
NULL
===DONE===