From eb1cd1f208026bd4e18d2c69952e61eb4f044dfa Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Thu, 1 Aug 2024 23:10:42 +0900 Subject: [PATCH] Add another test --- .../PhpStringLiteralSyntaxNodeTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/LocalisationAnalyser.Tools.Tests/PhpStringLiteralSyntaxNodeTest.cs b/LocalisationAnalyser.Tools.Tests/PhpStringLiteralSyntaxNodeTest.cs index 236bfeb..506dca0 100644 --- a/LocalisationAnalyser.Tools.Tests/PhpStringLiteralSyntaxNodeTest.cs +++ b/LocalisationAnalyser.Tools.Tests/PhpStringLiteralSyntaxNodeTest.cs @@ -27,6 +27,7 @@ public void TestEmptyString(string input) [InlineData("😊😊", "\"😊😊\"")] [InlineData("hello\nworld", "'hello\nworld'")] [InlineData("hello\nworld", "\"hello\nworld\"")] + [InlineData("hello\\nworld", "'hello\\nworld'")] [InlineData("hello\nworld", "\"hello\\nworld\"")] public void TestBasicString(string expected, string input) {