KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > junitx > tool > ChildTestCase


1 package junitx.tool;
2
3 /**
4  * @version $Revision: 1.1 $ $Date: 2002/09/22 22:19:34 $
5  * @author <a HREF="mailto:benoitx@users.sourceforge.net">Benoit Xhenseval</a>
6  */

7 public class ChildTestCase
8         extends ParentTestCase {
9
10     public ChildTestCase(String JavaDoc name) {
11         super(name);
12     }
13 }
14
Popular Tags