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