public void sendMessage() throws Exception {
Order order = new Order();
order.setQuantity(Integer.valueOf(JMS_MESSAGE));
SendJMSMessage sm = new SendJMSMessage();
sm.setupConnection();
sm.sendAMessage(order);
sm.stop();
}
public static Test suite() throws Exception {
return getDeploySetup(MessageFilterTest.class, "QuickstartMessageStoreServer.sar, Quickstart_messagefilter.esb");