Esempio n. 1
0
        public void Conclude_aLowPriorityAndAHighPrioryWhereHighPriorityAndLowPriorityHaveNoOpinion_ConcludeDontCare()
        {
            TransformationRule<int> lowpriority = new TransformationRule<int>();
            TransformationRule<int> highpriority = new TransformationRule<int>();
            RuleHierarchy<string, int> hierarch = new RuleHierarchy<string, int>();
            hierarch.AddLayer("low priority", lowpriority);
            hierarch.AddLayer("high priority", highpriority);

            Assert.IsInstanceOf<DontCareConclusion>(hierarch.Conclude(1));
        }
Esempio n. 2
0
        public void Conclude_aLowPriorityAndAHighPrioryWhereHighPriorityHaveNoOpinion_ConcludeBasedOnTheLowPrioritiesRules()
        {
            TransformationRule<int> lowpriority = new TransformationRule<int>();
            TransformationRule<int> highpriority = new TransformationRule<int>();
            RuleHierarchy<string, int> hierarch = new RuleHierarchy<string, int>();
            hierarch.AddLayer("low priority", lowpriority);
            hierarch.AddLayer("high priority", highpriority);

            lowpriority.AddPremise(i => i == 1, new Conclusion("not correct"));

            string expected = "not correct";
            string actual = hierarch.Conclude(1).ToString();
            Assert.AreEqual(expected, actual);
        }