idea spring boot + Gradle test 时报错,No tests found for given includes

idea spring boot + Gradle test 时报错,No tests found for given includes:xxxx (filter.includetestsmatching)

1. 问题描述

下载了新版的idea,使用spring boot工程,写测试例子,运行报错
在这里插入图片描述
build.gradle 尝试了添加

test {
    useJUnitPlatform()
}

并没有解决问题

2. 解决办法

idea设置:Settings > Build,Execution,Deployment > Build Tools > Gradle > build and run > “Run tests using:”
把 gradle(default) 替换成IntelliJ IDEA
idea spring boot + Gradle test 时报错,No tests found for given includes_第1张图片
再次运行测试方法,可以看到报错信息(总归还是代码有问题,只是修改配置后可以看到配置信息)

你可能感兴趣的:(spring,boot)