.andExpect(jsonPath("$.links[?(@.rel==doors)].href[0]").value(GAME_LOCATION + "/doors"));
}
@Test
public void showGameGameDoesNotExist() throws Exception {
when(this.gameRepository.retrieve(0L)).thenThrow(new GameDoesNotExistException(0L));
this.mockMvc.perform(get(GAME_LOCATION).accept(MediaType.APPLICATION_JSON)) //
.andExpect(status().isNotFound()) //
.andExpect(content().string("Game '0' does not exist"));
}