0


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>

当然,正常的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方法来收尾

点击测试

在这里插入图片描述


本文转载自: https://blog.csdn.net/weixin_45642669/article/details/132296655
版权归原作者 青碧凝霜 所有, 如有侵权,请联系我们删除。

“Springboot写单元测试”的评论:

还没有评论