}
@Test(expected = RuntimeJsonTypeMismatchException.class)
public void matchingDoubleWhenNumberOverflows() {
String jsonContent = makeJson(" { 'thing' : 4294967294 } ");
driver.addExpectation(new ClientDriverRequest("/"), new ClientDriverResponse(jsonContent, "application/json"));
Response response = get(baseUrl);
assertThat(response.asJson(), hasJsonPath("$.thing", greaterThan(5.1)));
}