KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > woolfel > SubDummyTest2


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 SubDummyTest2 extends DummyTestCase {
16
17     /**
18      *
19      */

20     private SubDummyTest2() {
21         super();
22         System.out.println("private empty constructor");
23     }
24
25     /**
26      * @param arg0
27      */

28     public SubDummyTest2(String JavaDoc arg0) {
29         super(arg0);
30         System.out.println("public string constructor");
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