blob: 58bbf452bd9c716b24093c53b3accbbf2b96b65a [file] [log] [blame]
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();
}
}