Skip to content

Commit dc193b8

Browse files
committed
:octocat: added additional tests for AlphaNum mode
1 parent bcdb83c commit dc193b8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/Data/AlphaNumTest.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@ public static function stringValidateProvider():array{
3131
return [
3232
['ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 $%*+-./:', true],
3333
['abc', false],
34+
['ÄÖÜ', false],
35+
[',', false],
36+
['-', true],
37+
['+', true],
38+
['.', true],
39+
['*', true],
40+
[':', true],
41+
['/', true],
42+
['\\', false],
3443
];
3544
}
3645

0 commit comments

Comments
 (0)