1 45 package org.exolab.jms.net.tcp.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 TCPSRegistryTest extends RegistryTestCase { 62 63 69 public TCPSRegistryTest(String name) throws Exception { 70 super(name, "tcp://localhost:7002", 71 SSLUtil.getTCPSProperties("test.keystore", "secret")); 72 } 73 74 79 public static Test suite() { 80 return new TestSuite(TCPSRegistryTest.class); 81 } 82 83 88 public static void main(String [] args) { 89 junit.textui.TestRunner.run(suite()); 90 } 91 92 } 93 | Popular Tags |