예제 #1
0
  @Test
  public void test_CheckForBinaryOp_2() {
    List<Integer> list1 = new ArrayList<Integer>();
    list1.add(4);
    list1.add(2);
    list1.add(8);

    CheckForBinaryOp chk1 = new CheckForBinaryOp(list1);

    assertTrue(chk1.isBinaryOpMultiplication());
  }