KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jodd > format > AllTests


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

3 package jodd.format;
4
5 import junit.framework.Test;
6 import junit.framework.TestSuite;
7
8 public class AllTests extends TestSuite {
9
10     public AllTests() {
11         super("jodd.format test suite");
12         addTestSuite(FormatTest.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