Tests.Tests.TestDoneStopsThread C# (CSharp) Method

TestDoneStopsThread() private method

private TestDoneStopsThread ( ) : void
return void
        public void TestDoneStopsThread ()
        {
            var storyStr =
                @"
-> DONE
This content is inaccessible.
";

            Story story = CompileString (storyStr);

            Assert.AreEqual (string.Empty, story.ContinueMaximally ());
        }
Tests