}
public Response executeEntity(String method, String uri, String contentType, Object entity)
{
MockHttpRequest post = createRequest(uri, method);
post.contentType(contentType);
return getResponse(post, entity);
}
public Response postEntity(String uri, String contentType, Object entity)
{