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

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

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

import junit.framework.Test;
import org.jboss.soa.esb.samples.quickstart.invm.test.SendJMSMessage;

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

  public void testInVM() throws Exception {
    clearMessages();

    String arg = new String("Hello InVM Transport!!");
        SendJMSMessage sm = new SendJMSMessage();
        sm.setupConnection();
        sm.sendAMessage(arg);
        sm.stop();
  }
 
  public static Test suite() throws Exception {
    return getDeploySetup(InVMTransport1Test.class, "QuickstartMessageStoreServer.sar, Quickstart_INVM_Transport_01.esb");
  }
}
TOP

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

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.