use of org.eclipse.reddeer.eclipse.ui.views.properties.PropertySheetProperty in project jbosstools-openshift by jbosstools.
the class ProjectPropertiesTest method getCurrentAnnotationProperties.
private List<TreeItem> getCurrentAnnotationProperties() {
try {
PropertySheetProperty annotationPropertiesRoot = propertiesView.getProperty("Annotations");
List<TreeItem> annotationProperties = annotationPropertiesRoot.getTreeItem().getItems();
assertTrue("There should be some annotation properties in the tab", annotationProperties != null && annotationProperties.size() > 0);
return annotationProperties;
} catch (CoreLayerException e) {
fail(e.getMessage());
return null;
}
}
Aggregations