1 3 package jodd; 4 5 import junit.framework.Test; 6 import junit.framework.TestSuite; 7 8 11 public class TestJodd5 { 12 13 public static void main(String [] args) { 14 junit.textui.TestRunner.run(suite()); 15 } 16 17 public static Test suite() { 18 TestSuite suite = new TestSuite("Jodd5 Java Library Test Suite"); 19 suite.addTest(new jodd.petite.AllTests()); 20 suite.addTest(new jodd.db.orm.AllTests()); 21 return suite; 22 } 23 } 24 | Popular Tags |