1 16 17 18 package org.apache.xmlrpc; 19 20 import java.net.URL ; 21 22 import junit.framework.Test; 23 import junit.framework.TestSuite; 24 25 31 public class CommonsXmlRpcTransportTest extends XmlRpcTransportTest { 32 33 34 public CommonsXmlRpcTransportTest(String testName) { 35 super(testName); 36 } 37 38 41 public static Test suite() 42 { 43 return new TestSuite(CommonsXmlRpcTransportTest.class); 44 } 45 46 49 protected XmlRpcTransport getTransport(URL url) { 50 return new CommonsXmlRpcTransport(url); 51 } 52 } 53 | Popular Tags |