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