KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jodd > petite > AllTests


1 // Copyright (c) 2003-2007, Jodd Team (jodd.sf.net). All Rights Reserved.
2

3 package jodd.petite;
4
5 import junit.framework.TestSuite;
6 import junit.framework.Test;
7
8 public class AllTests extends TestSuite {
9
10     public AllTests() {
11         super("jodd.petite test suite");
12         addTestSuite(WireTest.class);
13     }
14
15     public static Test suite() {
16         return new AllTests();
17     }
18
19     public static void main(String JavaDoc[] args) {
20         junit.textui.TestRunner.run(suite());
21     }
22 }
23
Popular Tags