Tests.Tests.TestLeftRightGlueMatching C# (CSharp) Method

TestLeftRightGlueMatching() private method

private TestLeftRightGlueMatching ( ) : void
return void
        public void TestLeftRightGlueMatching ()
        {
            var storyStr =
                @"
A line.
{ f():
    Another line.
}

== function f ==
{false:nothing}
~ return true

";
            var story = CompileString (storyStr);

            Assert.AreEqual ("A line.\nAnother line.\n", story.ContinueMaximally ());
        }
Tests