@Test
public void mappingMatchedWithNegativeRegexHeader() {
testClient.addResponse(MappingJsonSamples.MAPPING_REQUEST_WITH_NEGATIVE_REGEX_HEADERS);
WireMockResponse response = testClient.get("/header/match/dependent",
withHeader("Accept", "text/xml"));
assertThat(response.statusCode(), is(HTTP_NOT_FOUND));
response = testClient.get("/header/match/dependent",
withHeader("Accept", "application/json"));
assertThat(response.statusCode(), is(200));
}