19 declare(strict_types=1);
28 require_once __DIR__ .
'/ProvideUTF8CodepointRange.php';
42 public function testTransform(
string $exptected,
string $in,
string $method): void
49 $this->expectException(ValueError::class);
55 $this->expectException(TypeError::class);
62 'Empty string' => [
'',
'',
'assertSame'],
63 'Single quote' => [
''',
'\'',
'assertSame'],
64 'Different quotes' => [
'"Hey, y'all"',
'"Hey, y' .
"'" .
'all"',
'assertSame'],
65 'UTF-8' => [
'김치',
'김치',
'assertSame'],
66 'Characters beyond ASCII value 255' => [
'Ā',
'Ā',
'assertSame'],
67 'Characters beyond Unicode BMP' => [
'𐀀',
"\xF0\x90\x80\x80",
'assertSame'],
68 'Printable control characters' => [
'
	',
"\r\n\t",
'assertSame'],
69 'Unprintable control characters' => [
'����',
"\0\1\x1F\x7F",
'assertSame'],
70 'Named entities' => [
'<>&"',
'<>&"',
'assertSame'],
71 'Single space' => [
' ',
' ',
'assertSame'],
72 'Encode entities' => [
'&quot;hello&quot;',
'"hello"',
'assertSame'],
73 'Braces' => [
'{[()]}',
'{[()]}',
'assertSame'],
74 ...self::oneByteRangeExcept([
',',
'.',
'-',
'_']),