package org.jboss.soa.esb.quickstart.test;
import junit.framework.Test;
import org.jboss.soa.esb.samples.quickstart.scriptingchain.test.SendJMSMessage;
public class ScriptingChainTest extends AbstractQuickstartTestCase {
public ScriptingChainTest(String name) {
super(name);
}
public void testScriptingChain() throws Exception {
String content = "(chain)";
SendJMSMessage sjms = new SendJMSMessage();
sjms.setupConnection();
sjms.sendAMessage(content);
sjms.stop();
}
public static Test suite() throws Exception {
return getDeploySetup(ScriptingChainTest.class, "QuickstartMessageStoreServer.sar, scripting-chain-quickstart.esb");
}
}