KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > jodd > bean > TestAll


1 package jodd.bean;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 public class TestAll {
7
8     public static void main(String[] args) {
9         junit.textui.TestRunner.run(suite());
10     }
11
12     public static Test suite() {
13         TestSuite suite = new TestSuite("Bean tests");
14         suite.addTestSuite(TestBeanUtil.class);
15         return suite;
16     }
17     
18 }
Popular Tags