@Test
public void testJaxb() throws Exception
{
MuleClient muleClient = new MuleClient(muleContext);
Friend friend = new Friend();
friend.setName("John");
friend.setSurname("Doe");
MuleMessage result = muleClient.send("vm://jaxb-simple.in", friend, null);
assertThat(result, is(notNullValue()));
assertThat(result.getPayload(), is(notNullValue()));
assertThat(result.getPayload(), is(instanceOf(Friend.class)));