X-Git-Url: http://secure.phpeclipse.com

diff --git a/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/testpool/TestPool.java b/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/testpool/TestPool.java
index a8e5e6c..8e6a7fb 100644
--- a/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/testpool/TestPool.java
+++ b/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/testpool/TestPool.java
@@ -1,22 +1,17 @@
-/*
- * Created on Jul 31, 2004
+/*************************************************************************
+ * @author Ali Echihabi (ali_echihabi@ieee.org, ali.echihabi@souss.ca)
  *
- * To change the template for this generated file go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
+ * Plugin for PHP unit Testing.
+ * www.phpeclipse.de
+ * 
+ *************************************************************************/
+
+
 package net.sourceforge.phpeclipse.phpunit.testpool;
 
 import java.util.HashMap;
-import java.util.Iterator;
-import java.util.Vector;
-
 
-/**
- * @author Ali Echihabi
- *
- * To change the template for this generated type comment go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
+ 
 public class TestPool {
 
 	//private TestSuite currentParentTestSuite;
@@ -114,22 +109,6 @@ public class TestPool {
 	
 	}
 
-// This recursion is done at the php side (report generation)
-
-//	private int countSuiteExpectedTests(TestSuite suite) {
-//		
-//		int total = 0;
-//		
-//		total += suite.getNumTestCasesExpected();
-//		
-//		for(int i = 0; i < suite.getTestSuites().size(); i++) 
-//			total += countSuiteExpectedTests((TestSuite) suite.getTestSuites().elementAt(i));
-//		
-//		System.out.println("total: " + total);
-//		
-//		return total;
-//	
-//	}
 
 	public int getNumTestsOverall() {
 	
@@ -150,19 +129,19 @@ public class TestPool {
 		
 		int total = 0;
 		
-		Iterator i = tests.keySet().iterator();
-		String key = "";
-		while (i.hasNext()) {
-			
-			
-			key = (String) i.next();
-			TestCase element = (TestCase) tests.get(key);
-			
-			
-			if(element.isFailure())
-				total++;
-			
-		}
+//		Iterator i = tests.keySet().iterator();
+//		String key = "";
+//		while (i.hasNext()) {
+//			
+//			
+//			key = (String) i.next();
+//			TestCase element = (TestCase) tests.get(key);
+//			
+//			
+//			if(element.isFailure())
+//				total++;
+//			
+//		}
 			
 		return total;
 	}