1 30 31 package org.apache.commons.httpclient; 32 33 import junit.framework.*; 34 35 40 public class TestAllLocal extends TestCase { 41 42 public TestAllLocal(String testName) { 43 super(testName); 44 } 45 46 public static Test suite() { 47 TestSuite suite = new TestSuite(); 48 suite.addTest(TestNoHost.suite()); 49 suite.addTest(TestLocalHost.suite()); 50 return suite; 51 } 52 53 public static void main(String args[]) { 54 String [] testCaseName = { TestAllLocal.class.getName() }; 55 junit.textui.TestRunner.main(testCaseName); 56 } 57 58 } 59 | Popular Tags |