.withBody("Not allowed!")));
WireMockResponse response = testClient.get("/a/registered/resource");
assertThat(response.statusCode(), is(401));
assertThat(response.content(), is("Not allowed!"));
assertThat(response.firstHeader("Content-Type"), is("text/plain"));
}
@Test
public void mappingWithUrlContainingQueryParameters() {