missing files
[fedora-idea.git] / java / java-tests / testSrc / com / intellij / codeInspection / NumericOverflowTest.java
blobced6335b068adba7426c93a036b303c04f6a72c5
1 package com.intellij.codeInspection;
3 import com.intellij.JavaTestUtil;
4 import com.intellij.codeInspection.defUse.DefUseInspection;
5 import com.intellij.testFramework.InspectionTestCase;
7 public class NumericOverflowTest extends InspectionTestCase {
8 @Override
9 protected String getTestDataPath() {
10 return JavaTestUtil.getJavaTestDataPath() + "/inspection";
13 private void doTest() throws Exception {
14 doTest("numericOverflow/" + getTestName(false), new NumericOverflowInspection());
18 public void testSimple() throws Exception {
19 doTest();