Beispiel #1
0
        public void TestFalseFalse()
        {
            var test = new OrCondition(Condition.False, Condition.False);

            Assert.IsFalse(test.Matches(null));
        }
Beispiel #2
0
        public void TestTrueTrue()
        {
            var test = new OrCondition(Condition.True, Condition.True);

            Assert.IsTrue(test.Matches(null));
        }