@@ -25,6 +25,8 @@ public function bar($numericS, $nonE, $literal, $edgeUnion, $caseMode, $kanaMode
25
25
assertType ("'ABC' " , mb_strtoupper ('Abc ' ));
26
26
assertType ("'aBC' " , lcfirst ('ABC ' ));
27
27
assertType ("'Abc' " , ucfirst ('abc ' ));
28
+ assertType ("'aBC' " , mb_lcfirst ('ABC ' ));
29
+ assertType ("'Abc' " , mb_ucfirst ('abc ' ));
28
30
assertType ("'Hello World' " , ucwords ('hello world ' ));
29
31
assertType ("'Hello|World' " , ucwords ('hello|world ' , "| " ));
30
32
assertType ("'ČESKÁ REPUBLIKA' " , mb_convert_case ('Česká republika ' , MB_CASE_UPPER ));
@@ -43,6 +45,8 @@ public function bar($numericS, $nonE, $literal, $edgeUnion, $caseMode, $kanaMode
43
45
assertType ("numeric-string " , mb_strtoupper ($ numericS ));
44
46
assertType ("numeric-string " , lcfirst ($ numericS ));
45
47
assertType ("numeric-string " , ucfirst ($ numericS ));
48
+ assertType ("numeric-string " , mb_lcfirst ($ numericS ));
49
+ assertType ("numeric-string " , mb_ucfirst ($ numericS ));
46
50
assertType ("numeric-string " , ucwords ($ numericS ));
47
51
assertType ("numeric-string " , mb_convert_case ($ numericS , MB_CASE_UPPER ));
48
52
assertType ("numeric-string " , mb_convert_case ($ numericS , MB_CASE_LOWER ));
@@ -56,6 +60,8 @@ public function bar($numericS, $nonE, $literal, $edgeUnion, $caseMode, $kanaMode
56
60
assertType ("non-empty-string " , mb_strtoupper ($ nonE ));
57
61
assertType ("non-empty-string " , lcfirst ($ nonE ));
58
62
assertType ("non-empty-string " , ucfirst ($ nonE ));
63
+ assertType ("non-empty-string " , mb_lcfirst ($ nonE ));
64
+ assertType ("non-empty-string " , mb_ucfirst ($ nonE ));
59
65
assertType ("non-empty-string " , ucwords ($ nonE ));
60
66
assertType ("non-empty-string " , mb_convert_case ($ nonE , MB_CASE_UPPER ));
61
67
assertType ("non-empty-string " , mb_convert_case ($ nonE , MB_CASE_LOWER ));
@@ -69,6 +75,8 @@ public function bar($numericS, $nonE, $literal, $edgeUnion, $caseMode, $kanaMode
69
75
assertType ("string " , mb_strtoupper ($ literal ));
70
76
assertType ("string " , lcfirst ($ literal ));
71
77
assertType ("string " , ucfirst ($ literal ));
78
+ assertType ("string " , mb_lcfirst ($ literal ));
79
+ assertType ("string " , mb_ucfirst ($ literal ));
72
80
assertType ("string " , ucwords ($ literal ));
73
81
assertType ("string " , mb_convert_case ($ literal , MB_CASE_UPPER ));
74
82
assertType ("string " , mb_convert_case ($ literal , MB_CASE_LOWER ));
0 commit comments