1 45 package org.exolab.jms.net.http.invoke; 46 47 import junit.framework.Test; 48 import junit.framework.TestSuite; 49 50 import org.exolab.jms.net.invoke.ExportTestCase; 51 import org.exolab.jms.net.util.SSLUtil; 52 53 54 61 public class HTTPSExportTest extends ExportTestCase { 62 63 69 public HTTPSExportTest(String name) throws Exception { 70 super(name, "https-server://localhost:3030", 71 "https://localhost:8443/openjms-tunnel/tunnel", 72 SSLUtil.getHTTPSProperties("test.keystore", "secret"), null); 73 } 74 75 80 public static Test suite() { 81 return new TestSuite(HTTPSExportTest.class); 82 } 83 84 89 public static void main(String [] args) { 90 junit.textui.TestRunner.run(suite()); 91 } 92 93 } 94 | Popular Tags |