mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
19 lines
440 B
Java
19 lines
440 B
Java
package com.intellij.codeInsight;
|
|
|
|
import com.intellij.codeInsight.daemon.quickFix.LightQuickFixAvailabilityTestCase;
|
|
|
|
/**
|
|
* User: anna
|
|
* Date: 10/7/11
|
|
*/
|
|
public class ImplementAbstractFromNewTest extends LightQuickFixAvailabilityTestCase {
|
|
public void test() throws Exception {
|
|
doAllTests();
|
|
}
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return "/codeInsight/daemonCodeAnalyzer/quickFix/implementAbstractFromNew";
|
|
}
|
|
}
|