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