在 IntelliJ IDEA 中运行 Gradle 测试时,“未找到给定包含的测试”
2022-09-01 08:00:31
我无法在IntelliJ IDEA中通过Gradle运行测试,因为“没有找到给定包含的测试”错误。
我该如何修复它?
GradleTests
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertTrue;
public class GradleTests {
@Test
public void initTest() {
assertTrue(true);
}
}
build.gradle
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
//testCompile group: 'junit', name: 'junit', version: '4.12'
// https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.6.0'
}
test {
useJUnitPlatform()
}
错误:
> Task :test FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':test'.
> No tests found for given includes: [GradleTests.initTest](filter.includeTestsMatching)
一些注意事项:
- JUnit 4 和 5 都重现了问题
- IntelliJ IDEA 2019.3.3(社区版),构建#IC-193.6494.35,构建于2020年2月11日
- 测试在
src/test/java
- 像Inteliij 2019.1更新中断这样的更改运行器JUnit测试没有帮助
- 没有结果是一样的
useJUnitPlatform()