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.DisconnectionTestCase; 51 import org.exolab.jms.net.util.SSLUtil; 52 53 54 60 public class HTTPSDisconnectionTest extends DisconnectionTestCase { 61 62 68 public HTTPSDisconnectionTest(String name) throws Exception { 69 super(name, "https-server://localhost:3030", 70 "https://localhost:8443/openjms-tunnel/tunnel", 71 SSLUtil.getHTTPSProperties("test.keystore", "secret"), null); 72 } 73 74 79 public static Test suite() { 80 return new TestSuite(HTTPSDisconnectionTest.class); 81 } 82 83 88 public static void main(String [] args) { 89 junit.textui.TestRunner.run(suite()); 90 } 91 92 } 93 | Popular Tags |