KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > a > a2 > EUTest


1 package a.a2;
2
3 import junit.framework.Test;
4 import junit.framework.TestCase;
5 import junit.framework.TestSuite;
6
7 /**
8  * Simple test for bug 902884.
9  *
10  * @author Matt Albrecht <a HREF="mailto:groboclown@users.sourceforge.net">groboclown@users.sourceforge.net</a>
11  * @version $Date: 2004/04/21 02:11:12 $
12  * @since December 2, 2003
13  */

14 public class EUTest extends TestCase
15 {
16     private static final Class JavaDoc THIS_CLASS = EUTest.class;
17     static E e = new E();
18     
19     public EUTest( String JavaDoc name )
20     {
21         super( name );
22     }
23
24
25     //-------------------------------------------------------------------------
26
// Tests
27

28     public void test1()
29     {
30         // do nothing
31
}
32     
33     
34     //-------------------------------------------------------------------------
35
// Standard JUnit declarations
36

37     
38     public static Test suite()
39     {
40         TestSuite suite = new TestSuite( THIS_CLASS );
41         
42         return suite;
43     }
44 }
45
46
Popular Tags