faced9d65b2963071b882174a394d569017515f6
[phpeclipse.git] / net.sourceforge.phpeclipse.phpunit / src / net / sourceforge / phpeclipse / phpunit / TestSuite.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.Vector;
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 TestSuite {
18
19         private Vector testCases;
20         private String name;
21         private String id;
22         
23         public void addTestCase(TestCase test) {
24                 
25         }
26         
27         public void removeTestCase(TestCase test) {}
28         
29         public boolean contains(TestCase test) {
30                 return false;
31         }
32         
33         
34
35 }