@@ -74,7 +74,7 @@ public function testClean(): void
74
74
$ input = ' <b>ASDF</b> !@#$%^&*()_+" \';:>< ' ;
75
75
76
76
isSame ('ASDF !@#$%^&*()_+" \';:>< ' , Str::clean ($ input ));
77
- isSame ('asdf !@#$%^&*()_+ \\ " \\\';:>< ' , Str::clean ($ input , true , true ));
77
+ isSame ('asdf !@#$%^&*()_+\" \\\';:>< ' , Str::clean ($ input , true , true ));
78
78
}
79
79
80
80
public function testParseLines (): void
@@ -272,15 +272,15 @@ public function testEsc(): void
272
272
{
273
273
isSame (
274
274
'<a href="/test">Test !@#$%^&*()_+\/</a> ' ,
275
- Str::esc ('<a href="/test">Test !@#$%^&*()_+ \\ /</a> ' ),
275
+ Str::esc ('<a href="/test">Test !@#$%^&*()_+\/</a> ' ),
276
276
);
277
277
}
278
278
279
279
public function testEscXML (): void
280
280
{
281
281
isSame (
282
282
'<a href="/test">Test!@#$%^&*()_+\/</a> ' ,
283
- Str::escXml ('<a href="/test">Test!@#$%^&*()_+ \\ /</a> ' ),
283
+ Str::escXml ('<a href="/test">Test!@#$%^&*()_+\/</a> ' ),
284
284
);
285
285
}
286
286
@@ -333,10 +333,10 @@ public function testTestName2Human(): void
333
333
isSame ('Function IE Test ' , Str::testName2Human ('Test_FunctionIE_TestTest ' ));
334
334
isSame ('Test Function IE Test ' , Str::testName2Human ('Test_testFunctionIE_TestTest ' ));
335
335
336
- isSame ('Function IE ' , Str::testName2Human ('\\ JBZoo \ \Test_FunctionIE_Test ' ));
337
- isSame ('Function IE ' , Str::testName2Human ('\\ JBZoo \\ PHPHunit \ \Test_FunctionIE_Test ' ));
338
- isSame ('Function IE ' , Str::testName2Human ('\\ JBZoo \\ PHPHunit \\ Some \ \Test_FunctionIE_Test ' ));
339
- isSame ('Function IE ' , Str::testName2Human ('\\ JBZoo \\ PHPHunit \\ Some \\ Some \ \Test_FunctionIE_Test ' ));
336
+ isSame ('Function IE ' , Str::testName2Human ('\JBZoo\Test_FunctionIE_Test ' ));
337
+ isSame ('Function IE ' , Str::testName2Human ('\JBZoo\PHPHunit\Test_FunctionIE_Test ' ));
338
+ isSame ('Function IE ' , Str::testName2Human ('\JBZoo\PHPHunit\Some\Test_FunctionIE_Test ' ));
339
+ isSame ('Function IE ' , Str::testName2Human ('\JBZoo\PHPHunit\Some\Some\Test_FunctionIE_Test ' ));
340
340
}
341
341
342
342
public function testGenerateUUID (): void
0 commit comments