1 8 9 package test.org.webdocwf.util.loader; 10 11 import junit.framework.*; 12 import java.io.*; 13 import java.sql.*; 14 15 20 public class RunTests 21 { 22 23 27 public static Test suite() 28 { 29 TestSuite suite= new TestSuite(); 30 suite.addTestSuite(LoaderTest.class); 31 suite.addTestSuite(LoaderTest2.class); 32 suite.addTestSuite(LoaderTest3.class); 33 return suite; 34 } 35 36 40 public static void main(String [] args) 41 { 42 System.setProperty(LoaderTest.DATABASE_LOCATION_PROPERTY,args[0]); 44 45 46 junit.textui.TestRunner.main(new String []{"test.org.webdocwf.util.loader.RunTests"}); 49 } 50 } | Popular Tags |