Tests.Tests.TestSimpleGlue C# (CSharp) Method

TestSimpleGlue() private method

private TestSimpleGlue ( ) : void
return void
        public void TestSimpleGlue()
        {
            var storyStr = "Some <> \ncontent<> with glue.\n";

            Story story = CompileString(storyStr);

            Assert.AreEqual("Some content with glue.\n", story.Continue());
        }
Tests