idea编译报错处理:No tests found for given includes spring boot项目单元测试使用junit,使用idea运行时候发生报错:No tests found

idea编译报错处理:No tests found for given includes
spring boot项目单元测试使用junit,使用idea运行时候发生报错:No tests found for given includes,

详细内容如下所示:

idea编译报错处理:No tests found for given includes spring boot项目单元测试使用junit,使用idea运行时候发生报错:No tests found_第1张图片
这是由于点击单元测试使用了idea的按钮时候,idea默认使用了gradle的测试运行期,如果gradle的编译脚本没有进行相关配置,则会发生上述报错。

idea编译报错处理:No tests found for given includes spring boot项目单元测试使用junit,使用idea运行时候发生报错:No tests found_第2张图片
这里有两种解决方法:

1-gradle编译脚本添加test编译器配置,如下所示

test {
    useJUnitPlatform()
}

2-使用idea自带的测试运行期,具体配置如下所示:
idea编译报错处理:No tests found for given includes spring boot项目单元测试使用junit,使用idea运行时候发生报错:No tests found_第3张图片

你可能感兴趣的:(遇到的可爱的BUG们,java,单元测试,junit)