Tests.Tests.TestSameLineDivertIsInline C# (CSharp) Method

TestSameLineDivertIsInline() private method

private TestSameLineDivertIsInline ( ) : void
return void
        public void TestSameLineDivertIsInline()
        {
            var story = CompileString(@"
-> hurry_home
=== hurry_home ===
We hurried home to Savile Row -> as_fast_as_we_could

=== as_fast_as_we_could ===
as fast as we could.
-> DONE
");

            Assert.AreEqual("We hurried home to Savile Row as fast as we could.\n", story.Continue());
        }
Tests