Tests.Tests.TestEmptySequenceContent C# (CSharp) Method

TestEmptySequenceContent() private method

private TestEmptySequenceContent ( ) : void
return void
        public void TestEmptySequenceContent()
        {
            var story = CompileString(@"
-> thing ->
-> thing ->
-> thing ->
-> thing ->
-> thing ->
Done.

== thing ==
{once:
  - Wait for it....
  -
  -
  -  Surprise!
}
->->
");
            Assert.AreEqual("Wait for it....\nSurprise!\nDone.\n", story.ContinueMaximally());
        }
Tests