Skip to content

Commit 0e016a3

Browse files
antonsyndclaude
andcommitted
fix(test): rename ReprTests to Repr_Tests and add missing \x1f test case
Follow project naming convention (underscore-separated class names) and add the missing US (0x1f) control character to the unit test theory set for complete boundary coverage. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 59f1946 commit 0e016a3

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Sharpy.Core.Tests/ReprTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace Sharpy.Core.Tests;
55

6-
public class ReprTests
6+
public class Repr_Tests
77
{
88
[Theory]
99
[InlineData("\0", "'\\x00'")]
@@ -12,6 +12,7 @@ public class ReprTests
1212
[InlineData("\f", "'\\x0c'")]
1313
[InlineData("\v", "'\\x0b'")]
1414
[InlineData("\x1b", "'\\x1b'")]
15+
[InlineData("\x1f", "'\\x1f'")]
1516
[InlineData("\x7f", "'\\x7f'")]
1617
public void Repr_ControlCharacter_EscapedAsHex(string input, string expected)
1718
{

0 commit comments

Comments
 (0)