mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
26 lines
662 B
Java
26 lines
662 B
Java
/*
|
|
* User: anna
|
|
* Date: 17-Jun-2007
|
|
*/
|
|
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
import com.intellij.codeInspection.LocalInspectionTool;
|
|
import com.intellij.codeInspection.dataFlow.DataFlowInspection;
|
|
import org.jetbrains.annotations.NonNls;
|
|
|
|
public class FixAllQuickfixTest extends LightQuickFixTestCase {
|
|
@Override
|
|
protected LocalInspectionTool[] configureLocalInspectionTools() {
|
|
return new LocalInspectionTool[] {
|
|
new DataFlowInspection()
|
|
};
|
|
}
|
|
|
|
public void test() throws Exception { doAllTests(); }
|
|
|
|
@Override
|
|
@NonNls
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/fixAll";
|
|
}
|
|
} |