Tests.Tests.TestEscapeCharacter C# (CSharp) Method

TestEscapeCharacter() private method

private TestEscapeCharacter ( ) : void
return void
        public void TestEscapeCharacter()
        {
            var storyStr = @"{true:this is a '\|' character|this isn't}";

            Story story = CompileString(storyStr);

            Assert.AreEqual("this is a '|' character\n", story.ContinueMaximally());
        }
Tests