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 LiteXmlRpcTransportTest extends XmlRpcTransportTest { 32 33 34 public LiteXmlRpcTransportTest(String testName) { 35 super(testName); 36 } 37 38 41 public static Test suite() 42 { 43 return new TestSuite(LiteXmlRpcTransportTest.class); 44 } 45 46 49 protected XmlRpcTransport getTransport(URL url) { 50 return new LiteXmlRpcTransport(url); 51 } 52 53 } 54 | Popular Tags |