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