Package org.jboss.soa.esb.quickstart.test

Source Code of org.jboss.soa.esb.quickstart.test.Https2WaySSLTest

package org.jboss.soa.esb.quickstart.test;

import junit.framework.Test;
import java.io.FileNotFoundException;
import java.io.IOException;
import javax.jms.JMSException;
import javax.naming.NamingException;
import org.jboss.soa.esb.samples.https.test.SendJMSMessage;

public class Https2WaySSLTest extends AbstractQuickstartTestCase {
  public Https2WaySSLTest(String name) {
    super(name);
  }

  public void testSSL() throws Exception {
    clearMessages();
    SendJMSMessage sm = new SendJMSMessage();
      sm.setupConnection();
      sm.sendAMessage();
      sm.stop();
  }
 
  public static Test suite() throws Exception {
    return getDeploySetup(Https2WaySSLTest.class, "QuickstartMessageStoreServer.sar, quickstart_https_2way_ssl.esb");
  }
}
TOP

Related Classes of org.jboss.soa.esb.quickstart.test.Https2WaySSLTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.