blob: 55a71ecbf8293d44fec83575d8783382c45c1b75 [file] [log] [blame]
package com.intellij.codeInspection;
import com.intellij.JavaTestUtil;
import com.intellij.testFramework.InspectionTestCase;
public class NumericOverflowTest extends InspectionTestCase {
@Override
protected String getTestDataPath() {
return JavaTestUtil.getJavaTestDataPath() + "/inspection";
}
private void doTest() throws Exception {
doTest("numericOverflow/" + getTestName(true), new NumericOverflowInspection());
}
public void testSimple() throws Exception {
doTest();
}
}