gpt4 book ai didi

unit-testing - 在 gradle 根项目上运行测试任务不会在子项目上运行测试任务

转载 作者:行者123 更新时间:2023-12-04 05:24:32 24 4
gpt4 key购买 nike

在我的多项目中,我在根项目上运行测试任务,并期望它将在子项目上运行测试任务并生成单个测试报告。我观察到它从来没有在子项目上运行测试任务。我的期望是否不正确”我需要在我的 gradle 脚本中做任何特殊的配置吗?

请注意,我的根项目中没有测试。

最佳答案

我认为,来自 Gradle User Guide 的这个片段应该可以帮助你:

subprojects {
apply plugin: 'java'

// Disable the test report for the individual test task
test {
reports.html.enabled = false
}
}

task testReport(type: TestReport) {
destinationDir = file("$buildDir/reports/allTests")
// Include the results from the `test` task in all subprojects
reportOn subprojects*.test
}

关于unit-testing - 在 gradle 根项目上运行测试任务不会在子项目上运行测试任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34953111/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com