SpringBootTest为什么提示:Test ignored
-
确认你是否有工程主入口,也是就
SpringBootXXXApplication
-
确认你是否是使用SpringBootTest的的注解去写的测试类
3. 确认工程主入口和测试类的包路径是否一致,测试类可以多,但是不能少于主入口
文章来源:https://www.toymoban.com/news/detail-514491.html -
确认是否有引入如下俩个依赖,都要引入文章来源地址https://www.toymoban.com/news/detail-514491.html
<!--SpringBoot测试依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
</dependency>
<!--Junit单元测试依赖-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
- 个人错误记录,如有错误,欢迎评论指出,我也是在学习,希望指点,我会及时修改更正。
到了这里,关于SpringBootTest为什么提示:Test ignored的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!