1 45 package org.exolab.jms.net.http.invoke; 46 47 import java.util.Map ; 48 import java.util.HashMap ; 49 50 import junit.framework.Test; 51 import junit.framework.TestSuite; 52 53 import org.exolab.jms.net.invoke.InvokeTestCase; 54 import org.exolab.jms.net.util.SSLUtil; 55 56 57 63 public class HTTPSInvokeTest extends InvokeTestCase { 64 65 71 public HTTPSInvokeTest(String name) throws Exception { 72 super(name, "https-server://localhost:3030", 73 "https://localhost:8443/openjms-tunnel/tunnel", true, 74 SSLUtil.getHTTPSProperties("test.keystore", "secret"), null); 75 } 76 77 82 public static Test suite() { 83 return new TestSuite(HTTPSInvokeTest.class); 84 } 85 86 91 public static void main(String [] args) { 92 junit.textui.TestRunner.run(suite()); 93 } 94 95 } 96 | Popular Tags |