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.InvokeTestCase; 51 import org.exolab.jms.net.util.SSLUtil; 52 53 54 60 public class TCPSInvokeTest extends InvokeTestCase { 61 62 68 public TCPSInvokeTest(String name) throws Exception { 69 super(name, "tcp://localhost:7002", true, 70 SSLUtil.getTCPSProperties("test.keystore", "secret")); 71 } 72 73 78 public static Test suite() { 79 return new TestSuite(TCPSInvokeTest.class); 80 } 81 82 87 public static void main(String [] args) { 88 junit.textui.TestRunner.run(suite()); 89 } 90 91 } 92 | Popular Tags |