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