We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec15cba commit 9801486Copy full SHA for 9801486
CodingSeb.ExpressionEvaluator.Tests/ExpressionEvaluatorTests.cs
@@ -1696,6 +1696,17 @@ public void Evaluate_ExceptionsNotThrownWhenInStringInterpolation()
1696
Should.Throw<ExpressionEvaluatorSyntaxErrorException>(() => Console.WriteLine(evaluator.Evaluate("$\"Test two {Person.AnotherName.Trim()}\"")));
1697
}
1698
1699
+ [Test]
1700
+ [Category("Bug")]
1701
+ [Category("MergeRequest")]
1702
+ [Category("#107")]
1703
+ public void Evaluate_DoubleDoubleQuotesInEscapedStringThrowException()
1704
+ {
1705
+ var evaluator = new ExpressionEvaluator();
1706
+
1707
+ evaluator.Evaluate("@\"Hello \"\" Joe\"").ShouldBe(@"Hello "" Joe");
1708
+ }
1709
1710
#endregion
1711
1712
#region EvaluateWithSpecificEvaluator
0 commit comments