How can I iterate over that test results of each different type of project and collect it in a single report?
Example project setup:
Root Project
|
|- Java Project
|- test task
|
|- Android Library Project (has Build Types)
|- testDebug task
|- testRelease task
|
|- Android application Project (has Product Flavors and Build Types)
|- testFreeDebug task
|- testFreeRelease task
|- testPaidDebug task
|- testPaidRelease task
What I have so far:
This will aggregate all test results for all projects:
task aggregateResults(type: Copy) {
outputs.upToDateWhen { false }
subprojects { project ->
from { project*.testResultsDir }
}
into { file("$rootDir/$buildDir/results") }
}
task testReport(type: TestReport) {
outputs.upToDateWhen { false }
destinationDir = file("$rootDir/$buildDir/reports/allTests")
subprojects { project ->
reportOn project.tasks.withType(Test)*.binResultsDir
}
}
References:
For Java only:
task testReport(type: TestReport) {
destinationDir = file("$buildDir/reports/allTests")
reportOn subprojects*.test
}
Source: https://mcmap.net/q/475002/-aggregating-gradle-multiproject-test-results-using-testreport
For Android only:
subprojects.each { subproject -> evaluationDependsOn(subproject.name) }
def testTasks = subprojects.collect { it.tasks.withType(Test) }.flatten()
task aggregateResults(type: Copy) {
from { testTasks*.testResultsDir }
into { file("$buildDir/results") }
}
Source: https://android.googlesource.com/platform/tools/build/+/nougat-release/build.gradle#79