mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
15 lines
420 B
Java
15 lines
420 B
Java
package com.intellij.codeInsight.daemon.quickFix;
|
|
import com.intellij.codeInsight.daemon.LightIntentionActionTestCase;
|
|
|
|
/**
|
|
* @author ven
|
|
*/
|
|
public class AddRuntimeExceptionToThrowsTest extends LightIntentionActionTestCase {
|
|
public void test() throws Exception { doAllTests(); }
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/addRuntimeExceptionToThrows";
|
|
}
|
|
}
|