Skip to content

Instantly share code, notes, and snippets.

View jochil's full-sized avatar

Jochen Hilgers jochil

View GitHub Profile
@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());
}