Files
openide/java/java-tests/testSrc/com/intellij/codeInsight/daemon/quickFix/MethodThrowsTest.java
T
2010-09-30 10:35:32 +04:00

18 lines
431 B
Java

package com.intellij.codeInsight.daemon.quickFix;
import com.intellij.codeInspection.unneededThrows.RedundantThrowsDeclaration;
public class MethodThrowsTest extends LightQuickFixTestCase {
public void test() throws Exception { enableInspectionTool(new RedundantThrowsDeclaration()); doAllTests(); }
@Override
protected String getBasePath() {
return "/codeInsight/daemonCodeAnalyzer/quickFix/methodThrows";
}
}