assertTrue("Expected to find string " + RESULT_STRING + " found " + sinkMessages[0],
sinkMessages[0].equals(RESULT_STRING));
}
public void sendMessage() throws Exception {
SendMessage sm = new SendMessage();
String location = Helpers.getQuickstartLocation("webservice_producer/src/org/jboss/soa/esb/samples/quickstart/webserviceproducer/test/soap_message_01.xml");
File file = new File(location);
String targetString = FileUtil.readTextFile(file);
sm.sendMessageOverJMS(targetString);
}