KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > junitx > example > packageA > SampleAJarTest


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

9 public class SampleAJarTest extends TestCase {
10
11     public SampleAJarTest(String JavaDoc name) {
12         super(name);
13     }
14
15     public void testDummy1() {
16
17     }
18
19 }
20
Popular Tags