mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 00:29:34 +07:00
13 lines
418 B
Java
13 lines
418 B
Java
package com.intellij.codeInsight.daemon;
|
|
|
|
public class VariableHighlightingTest extends DaemonAnalyzerTestCase{
|
|
private static final String BASE_PATH = "/codeInsight/daemonCodeAnalyzer/variables";
|
|
|
|
public void testMultiFieldDecl() throws Exception {
|
|
doTest("MultiFieldDecl.java");
|
|
}
|
|
|
|
protected void doTest(String filePath) throws Exception {
|
|
super.doTest(BASE_PATH + "/" + filePath, false, true);
|
|
}
|
|
} |