mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 00:19:11 +07:00
26 lines
677 B
Java
26 lines
677 B
Java
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
import com.intellij.codeInspection.LocalInspectionTool;
|
|
import com.intellij.codeInspection.unusedSymbol.UnusedSymbolLocalInspection;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class RemoveUnusedVariableTest extends LightQuickFixParameterizedTestCase {
|
|
@NotNull
|
|
@Override
|
|
protected LocalInspectionTool[] configureLocalInspectionTools() {
|
|
return new LocalInspectionTool[]{ new UnusedSymbolLocalInspection()};
|
|
}
|
|
|
|
|
|
public void test() throws Exception {
|
|
doAllTests();
|
|
}
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/removeUnusedVariable";
|
|
}
|
|
|
|
}
|
|
|