mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-21 06:08:30 +07:00
26 lines
722 B
Java
26 lines
722 B
Java
/*
|
|
* User: anna
|
|
* Date: 21-Mar-2008
|
|
*/
|
|
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
import com.intellij.openapi.projectRoots.Sdk;
|
|
import com.intellij.openapi.projectRoots.impl.JavaSdkImpl;
|
|
import com.intellij.codeInspection.LocalInspectionTool;
|
|
import com.intellij.codeInspection.dataFlow.DataFlowInspection;
|
|
|
|
public class SurroundWithIfFixTest extends LightQuickFixTestCase {
|
|
@Override
|
|
protected LocalInspectionTool[] configureLocalInspectionTools() {
|
|
return new LocalInspectionTool[]{new DataFlowInspection()};
|
|
}
|
|
|
|
public void test() throws Exception {
|
|
doAllTests();
|
|
}
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/surroundWithIf";
|
|
}
|
|
} |