Tests.Tests.TestEnd C# (CSharp) 메소드

TestEnd() 개인적인 메소드

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

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