Example #1
0
 private void revealFailure(Test test) {
   for (Enumeration e = fTestRunViews.elements(); e.hasMoreElements(); ) {
     TestRunView v = (TestRunView) e.nextElement();
     v.revealFailure(test);
   }
 }
Example #2
0
 protected void aboutToStart(final Test testSuite) {
   for (Enumeration e = fTestRunViews.elements(); e.hasMoreElements(); ) {
     TestRunView v = (TestRunView) e.nextElement();
     v.aboutToStart(testSuite, fTestResult);
   }
 }
Example #3
0
 public void testViewChanged() {
   TestRunView view = (TestRunView) fTestRunViews.elementAt(fTestViewTab.getSelectedIndex());
   view.activate();
 }