We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8a69d9 commit 0a0f2d3Copy full SHA for 0a0f2d3
test/InputCharacterTest.php
@@ -98,4 +98,15 @@ public function testIsControlOnNotExplicitlyHandledControls() : void
98
self::assertTrue($char->isControl());
99
self::assertFalse($char->isHandledControl());
100
}
101
+
102
+ public function testUnicodeCharacter() : void
103
+ {
104
+ $char = new InputCharacter('ß');
105
106
+ self::assertFalse($char->isControl());
107
+ self::assertFalse($char->isHandledControl());
108
+ self::assertTrue($char->isNotControl());
109
+ self::assertEquals('ß', $char->get());
110
+ self::assertEquals('ß', $char->__toString());
111
+ }
112
0 commit comments