mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
18 lines
456 B
Java
18 lines
456 B
Java
|
|
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
import com.intellij.codeInspection.accessStaticViaInstance.AccessStaticViaInstance;
|
|
|
|
|
|
public class AccessStaticViaInstanceTest extends LightQuickFixTestCase {
|
|
|
|
public void test() throws Exception { enableInspectionTool(new AccessStaticViaInstance()); doAllTests(); }
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/accessStaticViaInstance";
|
|
}
|
|
|
|
}
|
|
|