热门IT资讯网

Springboot关掉单元测试

发表于:2024-11-25 作者:热门IT资讯网编辑
编辑最后更新 2024年11月25日,环境:Springboot2.x,配置如下1. 方式一true跳过测试且不会生成classtrue会跳过测试但是会生成测试class

环境:Springboot2.x,配置如下

1. 方式一

true跳过测试且不会生成class
true会跳过测试但是会生成测试class

                        org.apache.maven.plugins            maven-surefire-plugin                                                                org.springframework                    springloaded                    1.2.8.RELEASE                                                                                        true                        

2. 方式二(推荐使用)

  true跳过测试且不会生成class
  true会跳过测试但是会生成测试class
  spring-boot-maven-plugin插件已经集成了maven-surefire-plugin插件,会自动运行 Junit test,因此停用自动单元测试,只需要调用true或者true即可

                        org.springframework.boot            spring-boot-maven-plugin                                                                org.springframework                    springloaded                    1.2.8.RELEASE                                                                                        true                        
0