我有一个基于以下的应用程序:
Spring Framework
5.0.4.RELEASE Gradle
4.7 - 通过JUnit
5.1.1 关于Gradle with JUnit的配置位于根模块中的build.gradle
文件中:
...
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.junit.platform.gradle.plugin'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
repositories {
jcenter()
}
ext {
...
junitVersion = '5.1.1'
...
}
dependencies {
...
//Testing
...
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testCompile "org.junit.jupiter:junit-jupiter-params:$junitVersion";
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
....
}
test {
useJUnitPlatform()
}
}
//This location is mandatory
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.junit.platform:junit-platform-gradle-plugin:1.1.0"
}
}
通过Jenkins
我执行:
gradle :thymeleaf-02-infrastructure:test --parallel
Publish JUnit test result report
配置为thymeleaf-02-infrastructure/build/test-results/junit-platform/*.xml
从上面所有工作都很好,我可以在Jenkins
中看到@Test
已通过但Gradle
未生成report
目录,其中包含预期的html
文件。
即使直接在终端中执行gradle :thymeleaf-02-infrastructure:test --parallel
命令,所有工作(测试过程),但Gradle
都不会生成带有预期report
的{{1}}目录文件。
我已经阅读了这些链接:
我正在使用
html
和 test {
useJUnitPlatform()
}
> 4.6 , 4.7 ,那么缺少什么?
答案 0 :(得分:3)
您需要删除org.junit.platform.gradle.plugin
,因为它默认禁用标准test
任务。