public void usingHeaderCanOverrideContentType() {
ClientDriverResponse response = new ClientDriverResponse("hello").withContentType("text/plain");
assertThat(response.getContentType(), is("text/plain"));
response.withHeader("Content-Type", "text/xml");
assertThat(response.getContentType(), is("text/xml"));
}
@SuppressWarnings("deprecation")