Skip to content

Instantly share code, notes, and snippets.

@FuzzTest(maxDuration = "30s")
public void fuzzUserEndpoint(UserRequest userRequest, int userID) throws Exception {
mockMvc
.perform(
put("/user")
.contentType(MediaType.APPLICATION_JSON)
.content(userRequest.toString())
.param("id", userID))
.andExpect(statusIsNot5xxServerError());
}