corrected the number of tests expected in progress view. Added toolbar actions to...
[phpeclipse.git] / net.sourceforge.phpeclipse.phpunit / src / net / sourceforge / phpeclipse / phpunit / ProgressInfoComposite.java
index 3781fde..488bd01 100644 (file)
@@ -85,25 +85,6 @@ public class ProgressInfoComposite extends Composite {
        
        }
 
-       public void updateInfo(int numTests, int numTestsRun, int numFailures, int numErrors) {
-               
-               //update progress bar
-               progressBar.setMaximum(numTests);
-               progressBar.setSelection(numTestsRun);
-       
-       
-               //update labels
-               labelRunsVal.setText(numTestsRun + " / " + numTests);
-               labelFailuresVal.setText("" + numFailures);
-               labelErrorsVal.setText("" + numErrors);
-               
-               //TODO: change Failures label to red if some exist.
-               
-               
-               
-       }
-
-
        public void updateInfo(TestPool testPool) {
                
                int numTestsOverall = testPool.getNumTestsOverall();