我需要jUnit测试的帮助,我的结果是json文件,我需要测试该文件的长度,问题是jsonPath函数里面没有这样的方法。
@Test
@Transactional
public void getMunicipalitiesByCity() throws Exception {
restSampleMockMvc.perform(get("/api/insurancePlan/municipalities/city/{cityName}", "esc"))
.andExpect(status().isOk()).andExpect(content().contentType(MediaType.APPLICATION_JSON))
.andExpect(jsonPath("$.length").value(7));
这是我的测试方法,预期长度为7。 感谢任何帮助,谢谢
答案 0 :(得分:1)
尝试使用hamcrest matcher:
.andExpect((jsonPath("$", Matchers.hasSize(7))));