Tests.Tests.TestEnd C# (CSharp) Method

TestEnd() private method

private TestEnd ( ) : void
return void
        public void TestEnd()
        {
            Story story = CompileString(@"
hello
-> END
world
-> END
");

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