Skip to content

Commit fd91263

Browse files
committed
Clean up stray files and expand test coverage for char/empty-string comparison fix
Remove leftover patch artifacts (.orig, .rej, patch file) and temporary TestDotNet debugging files that were committed by mistake. Expand the regression test to also cover the not-equal (<>) operator case. https://claude.ai/code/session_01AkwUvu3XuCdj3D4axoX4UX
1 parent 947ab8c commit fd91263

File tree

9 files changed

+2
-216
lines changed

9 files changed

+2
-216
lines changed

CodeConverter/CSharp/BinaryExpressionConverter.cs.orig

Lines changed: 0 additions & 127 deletions
This file was deleted.

CodeConverter/CSharp/BinaryExpressionConverter.cs.rej

Lines changed: 0 additions & 14 deletions
This file was deleted.

TestDotNet/TestComparison.vbproj

Lines changed: 0 additions & 6 deletions
This file was deleted.

TestDotNet/TestComparisonCS.cs

Lines changed: 0 additions & 23 deletions
This file was deleted.

TestDotNet/TestComparisonCS.csproj

Lines changed: 0 additions & 6 deletions
This file was deleted.

TestDotNet/TestComparisonVB.vb

Lines changed: 0 additions & 20 deletions
This file was deleted.

TestDotNet/TestComparisonVB.vbproj

Lines changed: 0 additions & 6 deletions
This file was deleted.

Tests/CSharp/ExpressionTests/StringExpressionTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,7 @@ Private Sub TestMethod()
552552
Dim testChar As Char = Nothing
553553
Dim testResult = testChar = """"
554554
Dim testResult2 = """" = testChar
555+
Dim testResult3 = testChar <> """"
555556
End Sub
556557
End Class", @"
557558
internal partial class TestClass
@@ -561,6 +562,7 @@ private void TestMethod()
561562
char testChar = default;
562563
bool testResult = testChar == char.MinValue;
563564
bool testResult2 = char.MinValue == testChar;
565+
bool testResult3 = testChar != char.MinValue;
564566
}
565567
}");
566568
}

patch_binary.patch

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)