KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > junitx > example > packageA > packageB > SampleBJarTest


1 package junitx.example.packageA.packageB;
2
3 import junit.framework.Test;
4 import junit.framework.TestCase;
5 import junit.framework.TestSuite;
6
7 /**
8  * @version $Revision: 1.1 $ $Date: 2003/02/05 10:34:22 $
9  * @author <a HREF="mailto:vbossica@users.sourceforge.net">Vladimir R. Bossicard</a>
10  */

11 public class SampleBJarTest
12         extends TestCase {
13
14     public SampleBJarTest(String JavaDoc name) {
15         super(name);
16     }
17
18     public static Test suite() {
19         TestSuite suite = new TestSuite();
20
21         suite.addTest(new SampleBJarTest("testDummy1"));
22         suite.addTest(new SampleBJarTest("testDummy2"));
23
24         return suite;
25     }
26
27     public void testDummy1() {
28     }
29
30     public void testDummy2() {
31     }
32
33     public void testDummy3() {
34     }
35
36 }
37
Popular Tags