" { 'things' : " +
"[ { 'a': 'one', 'c' : 100 } , " +
" { 'a': 'two', 'c' : 150 } ] } ");
driver.addExpectation(new ClientDriverRequest("/"), new ClientDriverResponse(jsonContent, "application/json"));
Response response = get(baseUrl);
assertThat(response.asJson(), hasJsonPath("$.things[?(@.c > 125)].a", hasItem(equalTo("two"))));
}