TestPool: will be used as the model for a tree content provider.
[phpeclipse.git] / net.sourceforge.phpeclipse.phpunit / src / net / sourceforge / phpeclipse / phpunit / TestPool.java
1 /*
2  * Created on Jul 31, 2004
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */
7 package net.sourceforge.phpeclipse.phpunit;
8
9 import java.util.HashMap;
10
11 /**
12  * @author Ali Echihabi
13  *
14  * To change the template for this generated type comment go to
15  * Window>Preferences>Java>Code Generation>Code and Comments
16  */
17 public class TestPool {
18
19         private HashMap tests;
20
21         public TestPool() {
22                 
23                 tests = new HashMap();
24         }
25
26         public void addTest(TestCase test) {
27                 
28                 tests.put(test.getTestID(), test);
29                 
30         }
31         
32         public TestCase getTest(String testID) {
33                                 
34                 return (TestCase) tests.get(testID);
35         }
36
37 }