summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/testsrc/com/siyeh/ig/numeric/PointlessArithmeticExpressionInspectionTest.java
blob: 48914c37605fd48248613d5e9f050d52398f500b (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.siyeh.ig.numeric;

import com.siyeh.ig.IGInspectionTestCase;

public class PointlessArithmeticExpressionInspectionTest extends IGInspectionTestCase {

  public void test() throws Exception {
    doTest("com/siyeh/igtest/numeric/pointless_arithmetic_expression",
           new PointlessArithmeticExpressionInspection());
  }
}