SpringBoot⾃动⽣成测试案例
---恢复内容开始---
@SpringBootTest注解是SpringBoot⾃1.4.0版本开始引⼊的⼀个⽤于测试的注解
1.添加maven依赖
spring framework版本<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-test</artifactId>
</dependency>
2.Controller右键->new⼀个test case,选择⾃⼰要⽣成案例的⽅法,点击完成。
3.使⽤MockMvc进⾏单元测试,MockMvc是唯⼀⽀持Controller测试的。
测试类如下:
1. private MockMvc mockMvc;
2.
3.    @Autowired
4.    private WebApplicationContext webApplicationContext;
5.
6.    @Before
7.    public void init() {
8.        mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();
9.    }
10.
11.
12.    @Test
13.    public void testRegister() {
14.        // fail("Not yet implemented");
15.        UusRegisterReq req = new UusRegisterReq();
16.        req.setParterKey("KE");
17.        req.setParterSource(2);
18.        req.setParterUesrId("1");
19.        req.setPhone("131********");
20.
21.        String data = FastJsonUtils.obj2json(req);
22.        RequestBuilder requestBuilder = MockMvcRequestBuilders.post("/hehe/register").content(data)
23.                .contentType(MediaType.APPLICATION_JSON);
24.        try {
25.            String res = mockMvc.perform(requestBuilder).andExpect(MockMvcResultMatchers.status().isOk()).andReturn()
26.                    .getResponse().getContentAsString();
27.            log.info("注册测试结果:{}", res);
28.        } catch (Exception e) {
29.            e.printStackTrace();
30.        }
31.    }

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。