问题是因为我的控制器和服务是异步的,所以我的单元测试没有等待正确的响应。
将我的单元测试更改为:
MvcResult result = mvc.perform(post("/api/users/new") .content(TestHelpers.convertToJson(registroMock)) .contentType(TestHelpers.getJsonMediaType())) .andReturn();mvc.perform(asyncDispatch(result)) .andExpect(status().isCreated());
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)