1 package org.apache.ojb.soda; 2 3 import junit.framework.Test; 4 import junit.framework.TestSuite; 5 import org.apache.ojb.broker.HsqldbShutdown; 6 7 12 public class AllTests extends junit.framework.TestSuite 13 { 14 18 private static Class CLASS = AllTests.class; 19 20 23 public static void main(String [] args) 24 { 25 String [] arr = {CLASS.getName()}; 26 junit.textui.TestRunner.main(arr); 27 } 28 29 30 public static Test suite() 31 { 32 TestSuite suite = new TestSuite(); 33 suite.addTest(new TestSuite(SodaExamples.class)); 34 35 suite.addTestSuite(HsqldbShutdown.class); 37 return suite; 38 } 39 } 40 | Popular Tags |