@FunctionalInterface
public interface ResultMatcher
ResultMatcher
matches the result of an executed request against
some expectation.
See static factory methods in
MockMvcResultMatchers
.
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*; import static org.springframework.test.web.servlet.setup.MockMvcBuilders.*; // ... WebApplicationContext wac = ...; MockMvc mockMvc = webAppContextSetup(wac).build(); mockMvc.perform(get("/form")) .andExpect(status().isOk()) .andExpect(content().mimeType(MediaType.APPLICATION_JSON));
Modifier and Type | Method and Description |
---|---|
void |
match(MvcResult result)
Assert the result of an executed request.
|
void match(MvcResult result) throws java.lang.Exception
result
- the result of the executed requestjava.lang.Exception
- if a failure occurs