blob: 4009bde04d2f81c0f6388cd5dc59b4e2f3be3d86 [file] [log] [blame]
package com.intellij.codeInsight.daemon.quickFix;
import com.intellij.codeInspection.LocalInspectionTool;
import com.intellij.codeInspection.unneededThrows.RedundantThrowsDeclaration;
import org.jetbrains.annotations.NotNull;
public class MethodThrowsTest extends LightQuickFixParameterizedTestCase {
@NotNull
@Override
protected LocalInspectionTool[] configureLocalInspectionTools() {
return new LocalInspectionTool[] {new RedundantThrowsDeclaration()};
}
public void test() throws Exception { doAllTests(); }
@Override
protected String getBasePath() {
return "/codeInsight/daemonCodeAnalyzer/quickFix/methodThrows";
}
}