use of org.jetbrains.plugins.groovy.annotator.intentions.dynamic.elements.DRootElement in project intellij-community by JetBrains.
the class DynamicTest method getDClassElement.
@NotNull
private DClassElement getDClassElement() {
final DRootElement rootElement = DynamicManager.getInstance(getProject()).getRootElement();
final DClassElement classElement = rootElement.getClassElement(getTestName(false));
assertNotNull(classElement);
return classElement;
}
Aggregations