summaryrefslogtreecommitdiff
path: root/plugins/InspectionGadgets/testsrc/com/siyeh/ig/numeric/PointlessArithmeticExpressionInspectionTest.java
blob: 58bbf452bd9c716b24093c53b3accbbf2b96b65a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.siyeh.ig.numeric;

import com.intellij.codeInspection.InspectionProfileEntry;
import com.siyeh.ig.LightInspectionTestCase;
import org.jetbrains.annotations.Nullable;

public class PointlessArithmeticExpressionInspectionTest extends LightInspectionTestCase {

  public void testPointlessArithmeticExpression() {
    doTest();
  }

  @Nullable
  @Override
  protected InspectionProfileEntry getInspection() {
    return new PointlessArithmeticExpressionInspection();
  }
}