use of com.intellij.psi.css.CssSelectorSuffix in project intellij-plugins by JetBrains.
the class FlexCssNavigationTest method testCssStyleReference2.
@JSTestOptions({ JSTestOption.WithCssSupportLoader, JSTestOption.WithFlexFacet })
public void testCssStyleReference2() throws Exception {
PsiElement[] elements = findTargetElements(getTestName(false) + ".css");
boolean flag = false;
for (PsiElement element : elements) {
if (element instanceof CssSelectorSuffix) {
flag = true;
}
}
assertTrue(flag);
}
Aggregations