Example #1
0
        public void CorrectlyIdentifiesFalseText()
        {
            var interpreter = new ScenePropertyInterpreter();

            Assert.False(interpreter.CanInterpret("*nothen", new SkillFlowInterpretationContext(new SkillFlowInterpretationOptions())));
        }
Example #2
0
        public void IdentifiesShow()
        {
            var interpreter = new ScenePropertyInterpreter();

            Assert.True(interpreter.CanInterpret("*say", new SkillFlowInterpretationContext(new SkillFlowInterpretationOptions())));
        }