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