mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
19 lines
488 B
Java
19 lines
488 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 ReplaceAddAllArrayToCollectionsFixTest extends LightQuickFixTestCase {
|
|
public void test() throws Exception {
|
|
doAllTests();
|
|
}
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/replaceAddAllArrayToCollections";
|
|
}
|
|
} |