1 16 package org.apache.juddi; 17 18 import junit.framework.*; 19 20 23 public class TestAll extends TestCase 24 { 25 public TestAll(String testName) 26 { 27 super(testName); 28 } 29 30 public static Test suite() 31 { 32 TestSuite suite = new TestSuite(); 33 34 suite.addTest(org.apache.juddi.handler.TestAll.suite()); 35 suite.addTest(org.apache.juddi.datastore.jdbc.TestAll.suite()); 36 37 return suite; 38 } 39 40 public static void main(String args[]) 41 { 42 String [] testCaseName = { TestAll.class.getName() }; 43 junit.textui.TestRunner.main(testCaseName); 44 } 45 } | Popular Tags |