Annotation of embedaddon/php/ext/ctype/tests/ctype_upper_basic.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: Test ctype_upper() function : basic functionality 
        !             3: --SKIPIF--
        !             4: <?php require_once('skipif.inc'); ?>
        !             5: --FILE--
        !             6: <?php
        !             7: /* Prototype  : bool ctype_upper(mixed $c)
        !             8:  * Description: Checks for uppercase character(s) 
        !             9:  * Source code: ext/ctype/ctype.c
        !            10:  */
        !            11: 
        !            12: echo "*** Testing ctype_upper() : basic functionality ***\n";
        !            13: 
        !            14: $orig = setlocale(LC_CTYPE, "C");
        !            15: 
        !            16: $c1 = 'HELLOWORLD';
        !            17: $c2 = "Hello, World!\n";
        !            18: 
        !            19: var_dump(ctype_upper($c1));
        !            20: var_dump(ctype_upper($c2));
        !            21: 
        !            22: setlocale(LC_CTYPE, $orig);
        !            23: ?>
        !            24: ===DONE===
        !            25: --EXPECTF--
        !            26: *** Testing ctype_upper() : basic functionality ***
        !            27: bool(true)
        !            28: bool(false)
        !            29: ===DONE===

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