mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-19 01:09:52 +07:00
16 lines
311 B
Java
16 lines
311 B
Java
package com.intellij.codeInsight.daemon.quickFix;
|
|
|
|
public class MoveCatchUpTest extends LightQuickFixParameterizedTestCase {
|
|
|
|
public void test() throws Exception {
|
|
doAllTests();
|
|
}
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/moveCatchUp";
|
|
}
|
|
|
|
}
|
|
|