summaryrefslogtreecommitdiff
path: root/ext/ctype/tests/ctype_graph_error.phpt
blob: 2c04bac654e63ae99f4ae26daa7d2b269d995f5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
--TEST--
Test ctype_graph() function : error conditions - incorrect number of arguments
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
/* Prototype  : bool ctype_graph(mixed $c)
 * Description: Checks for any printable character(s) except space
 * Source code: ext/ctype/ctype.c
 */

/*
 * Pass an incorrect number of arguments to ctype_graph() to test behaviour
 */

echo "*** Testing ctype_graph() : error conditions ***\n";

// Zero arguments
echo "\n-- Testing ctype_graph() function with Zero arguments --\n";
var_dump( ctype_graph() );

//Test ctype_graph with one more than the expected number of arguments
echo "\n-- Testing ctype_graph() function with more than expected no. of arguments --\n";
$c = 1;
$extra_arg = 10;
var_dump( ctype_graph($c, $extra_arg) );
?>
===DONE===
--EXPECTF--
*** Testing ctype_graph() : error conditions ***

-- Testing ctype_graph() function with Zero arguments --

Warning: ctype_graph() expects exactly 1 parameter, 0 given in %s on line %d
NULL

-- Testing ctype_graph() function with more than expected no. of arguments --

Warning: ctype_graph() expects exactly 1 parameter, 2 given in %s on line %d
NULL
===DONE===