Files
openide/java/java-tests/testSrc/com/intellij/codeInspection/NumericOverflowTest.java
2010-04-20 13:53:19 +04:00

21 lines
508 B
Java

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();
}
}