Exemplo n.º 1
0
 public void TestQ10BInRange()
 {
     Assert.IsTrue(LogicalOperations.Q10(2, 1, 3, 0));
 }
Exemplo n.º 2
0
 public void TestQ10CNotLessThanD()
 {
     Assert.IsFalse(LogicalOperations.Q10(1, 1, 4, 4));
 }
Exemplo n.º 3
0
 public void TestQ10CLessThanD()
 {
     Assert.IsTrue(LogicalOperations.Q10(1, 1, 3, 4));
 }
Exemplo n.º 4
0
 public void TestQ10ValidRanges()
 {
     Assert.IsTrue(LogicalOperations.Q10(1, 2, 3, 4));
 }