@@ -1627,12 +1627,12 @@ public static IEnumerable<TestCaseData> TestCasesForRemoveCommentsTests
1627
1627
yield return new TestCaseData ( "/* multi line\n block comment */" ) . SetCategory ( "RemoveComments" ) . Returns ( "\n " ) ;
1628
1628
yield return new TestCaseData ( @"a = ""apple""; // test" ) . SetCategory ( "RemoveComments" ) . Returns ( @"a = ""apple""; " ) ;
1629
1629
yield return new TestCaseData ( @"a = ""apple""; /* test */" ) . SetCategory ( "RemoveComments" ) . Returns ( @"a = ""apple""; " ) ;
1630
- yield return new TestCaseData ( @ "// /*comment within comments */") . SetCategory ( "RemoveComments" ) . Returns ( @ " ") ;
1631
- yield return new TestCaseData ( @ "/* //comment within comments */") . SetCategory ( "RemoveComments" ) . Returns ( @ " ") ;
1632
- yield return new TestCaseData ( @ "// bla bla /*comment within comments */ bla bla") . SetCategory ( "RemoveComments" ) . Returns ( @ " ") ;
1633
- yield return new TestCaseData ( @ "/* bla bla //comment within comments */") . SetCategory ( "RemoveComments" ) . Returns ( @ " ") ;
1634
- yield return new TestCaseData ( @"// ""bla bla"" " ) . SetCategory ( "RemoveComments" ) . Returns ( @ " ") ;
1635
- yield return new TestCaseData ( @"/* ""bla bla"" */" ) . SetCategory ( "RemoveComments" ) . Returns ( @ " ") ;
1630
+ yield return new TestCaseData ( "// /*comment within comments */" ) . SetCategory ( "RemoveComments" ) . Returns ( " " ) ;
1631
+ yield return new TestCaseData ( "/* //comment within comments */" ) . SetCategory ( "RemoveComments" ) . Returns ( " " ) ;
1632
+ yield return new TestCaseData ( "// bla bla /*comment within comments */ bla bla" ) . SetCategory ( "RemoveComments" ) . Returns ( " " ) ;
1633
+ yield return new TestCaseData ( "/* bla bla //comment within comments */" ) . SetCategory ( "RemoveComments" ) . Returns ( " " ) ;
1634
+ yield return new TestCaseData ( @"// ""bla bla"" " ) . SetCategory ( "RemoveComments" ) . Returns ( " " ) ;
1635
+ yield return new TestCaseData ( @"/* ""bla bla"" */" ) . SetCategory ( "RemoveComments" ) . Returns ( " " ) ;
1636
1636
yield return new TestCaseData ( @"""// test """ ) . SetCategory ( "RemoveComments" ) . SetCategory ( "Not a comments" ) . Returns ( @"""// test """ ) ;
1637
1637
yield return new TestCaseData ( @"""/* test */""" ) . SetCategory ( "RemoveComments" ) . SetCategory ( "Not a comments" ) . Returns ( @"""/* test */""" ) ;
1638
1638
yield return new TestCaseData ( @"""bla bla // test """ ) . SetCategory ( "RemoveComments" ) . SetCategory ( "Not a comments" ) . Returns ( @"""bla bla // test """ ) ;
0 commit comments