mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
21 lines
503 B
Java
21 lines
503 B
Java
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
import com.intellij.openapi.projectRoots.Sdk;
|
|
import com.intellij.testFramework.IdeaTestUtil;
|
|
|
|
public class AddExceptionToThrowsTest extends LightQuickFixParameterizedTestCase {
|
|
public void test() throws Exception {
|
|
doAllTests();
|
|
}
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/addToThrows";
|
|
}
|
|
|
|
@Override
|
|
protected Sdk getProjectJDK() {
|
|
return IdeaTestUtil.getMockJdk18();
|
|
}
|
|
}
|