will(returnValue(mockClientResponse));
oneOf(mockClientResponse).setReturnType(String.class);
allowing(mockClientResponse);
final MultivaluedMap result = new MultivaluedMapImpl();
result.put("Content-Type", "application/json");
allowing(mockClientResponse).getMetadata();
will(returnValue(result));
}
});