summaryrefslogtreecommitdiff
path: root/ext/ctype/tests/ctype_punct_error.phpt
blob: afb9ff0de240632e3ed1f15c4ea88ef59f6863db (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
42
43
44
45
46
--TEST--
Test ctype_punct() function : error conditions - incorrect number of args
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
/* Prototype  : bool ctype_punct(mixed $c)
 * Description: Checks for any printable character which is not whitespace 
 * or an alphanumeric character 
 * Source code: ext/ctype/ctype.c
 */

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

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

$orig = setlocale(LC_CTYPE, "C"); 

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

//Test ctype_punct with one more than the expected number of arguments
echo "\n-- Testing ctype_punct() function with more than expected no. of arguments --\n";
$c = 1;
$extra_arg = 10;
var_dump( ctype_punct($c, $extra_arg) );

setlocale(LC_CTYPE, $orig); 
?>
===DONE===
--EXPECTF--
*** Testing ctype_punct() : error conditions ***

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

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

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

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