private void excecuteTestCase(String httpStatus, String body, String uuid, Map<String, String> httpHeaders)
throws Exception, TransformerException {
setupMocks(httpStatus, body, uuid, httpHeaders);
HttpResponseToRestfulHttpResponseTransformer trans = new HttpResponseToRestfulHttpResponseTransformer();
RestfulHttpResponse res = (RestfulHttpResponse) trans.transformMessage(msg, "UTF-8");
assertEquals(Integer.parseInt(httpStatus), res.getHttpStatus());
assertEquals(body, res.getBody());
assertEquals(uuid, res.getUuid());
assertEquals(httpHeaders, res.getHttpHeaders());
}