No tests found for given includes: [xxx.xxx.testList](filter.includeTestsMatching)

文章目录

    • 问题
    • 解决方案

问题

运行单元测试的时候报错:
No tests found for given includes: (filter.includeTestsMatching)
No tests found for given includes: [xxx.xxx.testList](filter.includeTestsMatching)_第1张图片

解决方案

加上依赖:
testImplementation(“org.springframework.boot:spring-boot-starter-test:${springbootVersion}”)

如果还是为解决,那么可能是因为你运行单测的时候配置的是gradle运行器去运行单测的。
解决方法:
在>Settings >Build,Execution,Deploy>Build Tools>Gradle中配置gradle项目中的单测默认运行器选择IntelliJ IDEA,然后点击应用保存就好了。
No tests found for given includes: [xxx.xxx.testList](filter.includeTestsMatching)_第2张图片

你可能感兴趣的:(JAVA,java,单元测试,1024程序员节)