예제 #1
0
 public final void testZeroMinusExp() {
   Minus m = new Minus();
   m.type = IntegerType.instance;
   operationWithZero(m, Minus.class, true, true);
 }
예제 #2
0
 public final void testExpMinusZero() {
   Minus m = new Minus();
   m.type = IntegerType.instance;
   operationWithZero(m, null, false, true);
 }