我有一个简单的测试
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
@AutoConfigureMockMvc
public class WebAppTest {
@Autowired
private MockMvc mvc;
@Test
public void getTopJsonTest() throws Exception {
mvc.perform(
get("/api/v1/top")
.contentType(MediaType.APPLICATION_JSON)
)
.andExpect(status().isOk())
.andExpect(content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON));
}
}
但是当我开始它时,上下文加载并且在测试之后没有开始...无限等待......我真的不知道发生了什么:(