赞
踩
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
<scope>test</scope>
</dependency>
当然,正常的Springboot也要导入
问题:不要引入
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.5.0</version>
<scope>test</scope>
</dependency>
这样会出现依赖冲突,删除只保留Test
即可生成测试类
在类上添加@@SpringBootTest注解
如果想打印内容需要再加上@Slf4j注解
在启动类的时候,会调用BeforeEach
然后遍历整个@Test
最后调用@AfterEach方法来收尾
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。