Tests.Tests.TestEnd2 C# (CSharp) Method

TestEnd2() private method

private TestEnd2 ( ) : void
return void
        public void TestEnd2()
        {
            Story story = CompileString(@"
-> test

== test ==
hello
-> END
world
-> END
");

            Assert.AreEqual("hello\n", story.ContinueMaximally());
        }
Tests