.header("X-collection-size", CoreMatchers.is("4"))
.header("Link",not(containsString("next")))
.when()
.get("/event/{id}/events");
Headers headers = response.getHeaders();
int found = 0;
for (String link: headers.getValues("Link")) {
if (link.contains("rel=\"last\""))
found++;
if (link.contains("rel=\"prev\""))
found++;
if (link.contains("rel=\"current\""))