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