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