mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 10:20:56 +07:00
13 lines
305 B
Java
13 lines
305 B
Java
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
public class AddExceptionToCatchTest extends LightQuickFixTestCase {
|
|
public void test() throws Exception {
|
|
doAllTests();
|
|
}
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/addCatchBlock";
|
|
}
|
|
}
|