Example #1
0
 public void TestQ03CounterLessThanYears()
 {
     Assert.IsTrue(Logical_Operations.Q03(true, 1, 0));
 }
Example #2
0
 public void TestQ03CounterNotLessThanYears()
 {
     Assert.IsFalse(Logical_Operations.Q03(true, 0, 0));
 }
Example #3
0
 public void TestQ03Invalid()
 {
     Assert.IsFalse(Logical_Operations.Q03(false, 0, 0));
 }