KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > outparams2 > PackageTests


1 package test.outparams2;
2
3 import junit.framework.Test;
4 import junit.framework.TestCase;
5 import junit.framework.TestSuite;
6
7 /**
8  * Session tests
9  */

10 public class PackageTests extends TestCase {
11
12     public PackageTests(String JavaDoc name) {
13         super(name);
14     }
15
16     public static Test suite() throws Exception JavaDoc {
17         TestSuite suite = new TestSuite();
18
19         suite.addTestSuite(TestOutParams.class);
20
21         return suite;
22     }
23 }
24
Popular Tags