mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
20 lines
463 B
Java
20 lines
463 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;
|
|
|
|
public class SurroundWithArrayFixTest extends LightQuickFix15TestCase {
|
|
public void test() throws Exception {
|
|
doAllTests();
|
|
}
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/surroundWithArray";
|
|
}
|
|
}
|