2 * Created on Jul 31, 2004
4 * To change the template for this generated file go to
5 * Window>Preferences>Java>Code Generation>Code and Comments
7 package net.sourceforge.phpeclipse.phpunit;
9 import java.util.HashMap;
12 * @author Ali Echihabi
14 * To change the template for this generated type comment go to
15 * Window>Preferences>Java>Code Generation>Code and Comments
17 public class TestPool {
19 private HashMap tests;
23 tests = new HashMap();
26 public void addTest(TestCase test) {
28 tests.put(test.getTestID(), test);
32 public TestCase getTest(String testID) {
34 return (TestCase) tests.get(testID);