千家信息网

Springboot关掉单元测试

发表于:2025-01-23 作者:千家信息网编辑
千家信息网最后更新 2025年01月23日,环境:Springboot2.x,配置如下1. 方式一true跳过测试且不会生成classtrue会跳过测试但是会生成测试class
千家信息网最后更新 2025年01月23日Springboot关掉单元测试

环境: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