@Test
public void testFaultInCxfServiceWithCatchExceptionStrategyRethrown() throws Exception
{
MuleMessage request = new DefaultMuleMessage(requestFaultPayload, (Map<String,Object>)null, muleContext);
MuleClient client = muleContext.getClient();
MuleMessage response = client.send("http://localhost:" + dynamicPort.getNumber() + "/testServiceWithFaultCatchExceptionRethrown", request);
assertNotNull(response);
assertEquals(String.valueOf(HttpConstants.SC_INTERNAL_SERVER_ERROR), response.getInboundProperty(HttpConnector.HTTP_STATUS_PROPERTY));
assertTrue(response.getPayloadAsString().contains("<faultstring>"));
}