1 45 package org.exolab.jms.net.tcp.invoke; 46 47 import junit.framework.Test; 48 import junit.framework.TestSuite; 49 50 import org.exolab.jms.net.invoke.CallbackTestCase; 51 import org.exolab.jms.net.util.SSLUtil; 52 53 54 60 public class TCPSCallbackTest extends CallbackTestCase { 61 62 68 public TCPSCallbackTest(String name) throws Exception { 69 super(name, "tcps://localhost:7003", 70 SSLUtil.getTCPSProperties("test.keystore", "secret")); 71 } 72 73 78 public static Test suite() { 79 return new TestSuite(TCPSCallbackTest.class); 80 } 81 82 87 public static void main(String [] args) { 88 junit.textui.TestRunner.run(suite()); 89 } 90 91 } 92 | Popular Tags |