1.低版本springboot的test启动器做单元测试时如2.1.5版本
单元测试类需要加
@SpringBootTest @RunWith(SpringRunner.class)
这个两个注解
用的@Test注解是junit包
2.高版本springboot的test启动器做单元测试时如2.6.7版本
单元测试类需要加
@SpringBootTest
用的@Test注解是junit-jupiter包
1.低版本springboot的test启动器做单元测试时如2.1.5版本
单元测试类需要加
@SpringBootTest @RunWith(SpringRunner.class)
这个两个注解
用的@Test注解是junit包
2.高版本springboot的test启动器做单元测试时如2.6.7版本
单元测试类需要加
@SpringBootTest
用的@Test注解是junit-jupiter包