Tests.Tests.TestChoiceCount C# (CSharp) Method

TestChoiceCount() private method

private TestChoiceCount ( ) : void
return void
        public void TestChoiceCount()
        {
            Story story = CompileString(@"
* one -> end
* two -> end
{ CHOICE_COUNT() }

= end
-> END
");

            Assert.AreEqual("2\n", story.Continue());
        }
Tests