我的项目结构如下所示.我想在Gradle中使用TestReport功能将所有测试结果聚合到一个目录中.然后,我可以通过单个index.html文件访问所有子项目的所有测试结果.我怎么能做到这一点?
.
|--ProjectA
|--src/test/...
|--build
|--reports
|--tests
|--index.html (testresults)
|--..
|--..
|--ProjectB
|--src/test/...
|--build
|--reports
|--tests
|--index.html (testresults)
|--..
|--..
Run Code Online (Sandbox Code Playgroud)