美文网首页
SpringBoot 入门笔记(八)MockMVC

SpringBoot 入门笔记(八)MockMVC

作者: MonroeShen | 来源:发表于2019-02-08 14:10 被阅读0次

    使用MockMvc,我们可以完成基于RESTful风格的SpringMVC的测试,我们可以测试完整的Spring MVC流程,即从URL请求到控制器处理,再到视图渲染都可以测试。

    示例代码:

    @RunWith(SpringRunner.class)
    @SpringBootTest
    @AutoConfigureMockMvc    // 使用AutoConfigureMockMvc注解
    public class GirlControllerTest {
    
        @Autowired   // 自动装配MockMvc
        private MockMvc mockMvc;
    
        @Test
        public void girlList() throws Exception{
        // 模拟get请求
            mockMvc.perform(MockMvcRequestBuilders.get("/girls")).andExpect(MockMvcResultMatchers.status().is2xxSuccessful());
            // mockMvc.perform(MockMvcRequestBuilders.get("/girls")).andExpect(MockMvcResultMatchers.content().string("hello world"))
        }
    }
    

    相关文章

      网友评论

          本文标题:SpringBoot 入门笔记(八)MockMVC

          本文链接:https://www.haomeiwen.com/subject/onznsqtx.html