当前位置:   article > 正文

Springboot写单元测试

Springboot写单元测试

导入依赖

		<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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

当然,正常的Springboot也要导入

问题:不要引入

<dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter-api</artifactId>
    <version>5.5.0</version>
    <scope>test</scope>
</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

这样会出现依赖冲突,删除只保留Test

点击生成

在这里插入图片描述

在这里插入图片描述
即可生成测试类

添加注解

在类上添加@@SpringBootTest注解
如果想打印内容需要再加上@Slf4j注解

在启动类的时候,会调用BeforeEach

然后遍历整个@Test

最后调用@AfterEach方法来收尾

点击测试

在这里插入图片描述

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/177587
推荐阅读
相关标签
  

闽ICP备14008679号