Tests.Tests.TestTags C# (CSharp) Method

TestTags() public method

public TestTags ( ) : void
return void
        public void TestTags ()
        {
            var storyStr =
                @"
VAR x = 2 
# author: Joe
# title: My Great Story
This is the content

== knot ==
# knot tag
Knot content
# end of knot tag
-> END

= stitch
# stitch tag
Stitch content
# this tag is below some content so isn't included in the static tags for the stitch
-> END
";
            var story = CompileString (storyStr);

            var globalTags = new List<string> ();
            globalTags.Add ("author: Joe");
            globalTags.Add ("title: My Great Story");

            var knotTags = new List<string> ();
            knotTags.Add ("knot tag");

            var knotTagWhenContinuedTwice = new List<string> ();
            knotTagWhenContinuedTwice.Add ("end of knot tag");

            var stitchTags = new List<string> ();
            stitchTags.Add ("stitch tag");

            Assert.AreEqual (globalTags, story.globalTags);
            Assert.AreEqual("This is the content\n", story.Continue ());
            Assert.AreEqual (globalTags, story.currentTags);

            Assert.AreEqual (knotTags, story.TagsForContentAtPath("knot"));
            Assert.AreEqual (stitchTags, story.TagsForContentAtPath ("knot.stitch"));

            story.ChoosePathString ("knot");
            Assert.AreEqual ("Knot content\n", story.Continue ());
            Assert.AreEqual (knotTags, story.currentTags);
            Assert.AreEqual ("", story.Continue ());
            Assert.AreEqual (knotTagWhenContinuedTwice, story.currentTags);
        }
Tests