:octocat: added additional tests for AlphaNum mode

This commit is contained in:
smiley
2025-09-19 18:26:34 +02:00
parent bcdb83c462
commit dc193b8781
+9
View File
@@ -31,6 +31,15 @@ final class AlphaNumTest extends DataInterfaceTestAbstract{
return [
['ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 $%*+-./:', true],
['abc', false],
['ÄÖÜ', false],
[',', false],
['-', true],
['+', true],
['.', true],
['*', true],
[':', true],
['/', true],
['\\', false],
];
}