美文网首页
springboot 单元测试注意事项

springboot 单元测试注意事项

作者: zxbyh | 来源:发表于2023-04-22 11:47 被阅读0次
    image.png

    pom需要依赖以下:

            <!--SpringBoot 测试的场景启动-->
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-test</artifactId>
                <version>2.7.9</version>
                <scope>test</scope>
            </dependency>
            <dependency>
                <groupId>junit</groupId>
                <artifactId>junit</artifactId>
                <scope>test</scope>
            </dependency>
    

    相关文章

      网友评论

          本文标题:springboot 单元测试注意事项

          本文链接:https://www.haomeiwen.com/subject/veudjdtx.html