SpringBoot 集成测试
2021-05-12 02:30
标签:alt loading 技术 rest template shift spring 测试 div 如果使用IntelliJ IDEA,可以使用快捷键直接生成: 1.使用@SpringBootTest进行测试,使用TestRestTemplate测试Controller类 在测试类上加入@RunWith(SpringRunner.class) 与@SpringBootTest 注解, 2. 使用@WebMvcTest 注解测试
在测试类上加入@RunWith(SpringRunner.class) 与 @WebMvcTest 注解 SpringBoot 集成测试 标签:alt loading 技术 rest template shift spring 测试 div 原文地址:https://www.cnblogs.com/shianliang/p/13143987.html一. 测试一般程序(Service/DAO/Util类)
1. 在pom.xml中引入依赖
2. 生成测试类
3. 编写测试类
编写测试方法并添加@Test注解
使用MockMvc对象测试
上一篇:python的魔术方法