KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > woolfel > SubDummyTest


1 /*
2  * Created on Jul 28, 2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package woolfel;
8
9 /**
10  * @author pete
11  *
12  * TODO To change the template for this generated type comment go to
13  * Window - Preferences - Java - Code Style - Code Templates
14  */

15 public class SubDummyTest extends DummyTestCase {
16
17     /**
18      *
19      */

20     public SubDummyTest() {
21         super();
22         // TODO Auto-generated constructor stub
23
}
24
25     /**
26      * @param arg0
27      */

28     public SubDummyTest(String JavaDoc arg0) {
29         super(arg0);
30         // TODO Auto-generated constructor stub
31
}
32
33     public void oneTimeSetUp() {
34         System.out.println("oneTimeSetUp called -- ");
35     }
36     
37     public void oneTimeTearDown() {
38         System.out.println("oneTimeTearDown called -- ");
39     }
40 }
41
Popular Tags