use of org.eclipse.reddeer.eclipse.debug.ui.views.breakpoints.BreakpointsView in project jbosstools-openshift by jbosstools.
the class DebuggingEAPAppTest method teardown.
@After
public void teardown() {
try {
new ShellMenuItem("Run", "Terminate").select();
} catch (CoreLayerException ex) {
if (ex.getMessage().contains("Menu item is not enabled")) {
// no big deal, there is no execution running
} else {
throw ex;
}
}
// remove all breakpoints
BreakpointsView breakpointsView = new BreakpointsView();
breakpointsView.open();
breakpointsView.removeAllBreakpoints();
}
Aggregations