protected MessageList messageList = new MessageList();
public void testInOnlyMessage() throws Exception {
// START SNIPPET: message
Destination destination = client.createDestination("service:http://servicemix.org/cheese/receiver");
Message message = destination.createInOnlyMessage();
message.setProperty("name", "James");
message.setBody("<hello>world</hello>");
client.send(message);
// END SNIPPET: message
messageList.assertMessagesReceived(1);
}