Skip to content

Instantly share code, notes, and snippets.

@jamesdube
Created February 26, 2019 13:13
Show Gist options
  • Save jamesdube/827bff8b69235824f5dc4a9d253f8f8b to your computer and use it in GitHub Desktop.
Save jamesdube/827bff8b69235824f5dc4a9d253f8f8b to your computer and use it in GitHub Desktop.
this.mockMvc.perform(post("/alerts")
.contentType(MediaType.APPLICATION_JSON_VALUE)
.content(mapper.writeValueAsString(request)))
.andDo(print())
.andExpect(status().isCreated())
.andExpect(jsonPath("$.success").value(true))
.andExpect(jsonPath("$.narrative").value("CLOSE ALERT WITH ID 989898989"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment