SpringBoot Junit5的简单使用
作者:互联网
springboot2.2之后使用junit5作为默认测试框架
使用步骤
1.引入依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2.创建测试类
@SpringBootTest
public class MainApplicationTest {
注:
1.测试类上需添加注解@SpringBootTest
2.测试类的路径必须与主程序的路径一致,否则启动不了
3.常用注解
1.@Test:加在测试方法上,使能够独立运行
2.@BeforeEach :在每个测试方法之前执行
3.@AfterEach :在每个测试方法之后执行
4.@BeforeAll :在所有测试之前执行
5.@AfterAll :在所有测试之后执行
6.@Disabled :测试类或测试方法不执行
7.@Timeout :测试方法运行如果超过了指定时间将会返回错误
标签:执行,SpringBoot,boot,SpringBootTest,测试,简单,test,Junit5,测试方法 来源: https://blog.csdn.net/weixin_46134317/article/details/120807612