Skip to content

Instantly share code, notes, and snippets.

@renato04
Last active March 9, 2021 11:42
Show Gist options
  • Save renato04/bf00ea9b681ca422cde1e08cde0483a3 to your computer and use it in GitHub Desktop.
Save renato04/bf00ea9b681ca422cde1e08cde0483a3 to your computer and use it in GitHub Desktop.
Assert Example MockMvc
this.mockMvc.perform(get("/test"))
.andExpect(content().contentType(MediaType.APPLICATION_JSON))
.andExpect(status().isOk())
.andExpect(jsonPath("$.value", is("Olá!")));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment