Updated the test case

This commit is contained in:
Moriyoshi Koizumi 2002-10-23 20:38:18 +00:00
parent 31224b8923
commit 069bfc57d9

View File

@ -2,7 +2,8 @@
mb_strtoupper() / mb_strtolower()
--SKIPIF--
<?php include('skipif.inc'); ?>
function_exists('mb_strtolower') or die("SKIP");
function_exists('mb_strtolower') and
function_exists('mb_convert_case' ) or die("SKIP");
--POST--
--GET--
--FILE--
@ -11,10 +12,11 @@ function_exists('mb_strtolower') or die("SKIP");
print mb_strtolower( "ABCDEFGHIJKLMNOPQRSTUVWXYZ\n" );
print mb_strtoupper( mb_strtolower( "ABCDEFGHIJKLMNOPQRSTUVWXYZ\n" ) );
print mb_strtoupper( "äëï\n" );
print mb_convert_case( "äëï\n", MB_CASE_TITLE );
?>
--EXPECT--
abcdefghijklmnopqrstuvwxyz
ABCDEFGHIJKLMNOPQRSTUVWXYZ
ÄËÏ
Äëï