public void TestQ06IsValidTrue()
 {
     Assert.IsTrue(LogicalOperations.q06(true, 0, 0));
 }
 public void TestQ06CounterLessThanYears()
 {
     Assert.IsTrue(LogicalOperations.q06(false, 1, 0));
 }
示例#3
0
 public void TestQ06CounterNotLessThanYears()
 {
     Assert.IsFalse(LogicalOperations.q06(false, 0, 0));
 }