我有这样的测试:
@Test
public void blahFunction() throws Exception {
mockMvc.perform(post("/api/todo/{id}", 1L)
)
.andExpect(status().isOk())
.andExpect(jsonPath("$.file", is("Lorem ipsum")))
}
}
我有json响应包含file
属性,现在我想检查这个文件路径是否存在,我该怎么做呢,
我想知道确实存在这样的事情:
result = mockMvc.perform...
String filePath = result.jsonpath("$.file")