mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
21 lines
508 B
Java
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();
|
|
}
|
|
}
|