Test "lightened"

This commit is contained in:
Roman Shevchenko
2011-06-01 21:50:07 +04:00
parent 70d4ef5a68
commit be3925acc2
3 changed files with 6 additions and 6 deletions
@@ -24,8 +24,8 @@ import com.intellij.pom.java.LanguageLevel;
import org.jetbrains.annotations.NonNls;
/**
* This class intended for "heavily-loaded" tests only, e.g. those need to setup separate project directory structure to run
* For "lightweight" tests use LightAdvHighlightingTest
* This class intended for "heavily-loaded" tests only, e.g. those need to setup separate project directory structure to run.
* For "lightweight" tests please use {@linkplain LightAdvHighlightingJdk7Test}.
*/
public class AdvHighlightingJdk7Test extends DaemonAnalyzerTestCase {
@NonNls private static final String BASE_PATH = "/codeInsight/daemonCodeAnalyzer/advHighlighting7/";
@@ -45,10 +45,6 @@ public class AdvHighlightingJdk7Test extends DaemonAnalyzerTestCase {
doTest(BASE_PATH + "staticImports/staticImports.java", BASE_PATH + "/staticImports", false, false);
}
public void testEnumSyntheticMethods() throws Exception {
doTest(BASE_PATH + getTestName(true) + ".java", false, false);
}
public void testStaticImportConflict() throws Exception {
doTest(BASE_PATH + "staticImportConflict/Usage.java", BASE_PATH + "/staticImportConflict", false, false);
}
@@ -57,6 +57,10 @@ public class LightAdvHighlightingJdk7Test extends LightDaemonAnalyzerTestCase {
};
}
public void testEnumSyntheticMethods() throws Exception {
doTest(false, false);
}
public void testDuplicateAnnotations() throws Exception {
doTest(false, false);
}