mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-18 16:17:00 +07:00
23 lines
541 B
Java
23 lines
541 B
Java
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
import com.intellij.codeInspection.deadCode.UnusedDeclarationInspection;
|
|
|
|
|
|
public class RemoveUnusedParameterTest extends LightQuickFixParameterizedTestCase {
|
|
|
|
@Override
|
|
protected void setUp() throws Exception {
|
|
super.setUp();
|
|
enableInspectionTool(new UnusedDeclarationInspection());
|
|
}
|
|
|
|
public void test() throws Exception { doAllTests(); }
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/removeUnusedParameter";
|
|
}
|
|
|
|
}
|
|
|