@SpringBootTest没有开始测试

时间:2018-03-20 13:42:32

标签: spring-boot spring-test spring-boot-test

我有一个简单的测试

@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));
    }

}

但是当我开始它时,上下文加载并且在测试之后没有开始...无限等待......我真的不知道发生了什么:(

enter image description here

0 个答案:

没有答案