I am new to gradle. I am using the below code. But it generates coverage for unit test cases. But it didn\'t generate for integration test cases. I have my test classes in the p
I believe the most full answer will look like:
tasks.withType(Test) {
finalizedBy jacocoTestReport
}
project.jacocoTestReport {
getExecutionData().setFrom(fileTree(buildDir).include("/jacoco/*.exec"))
reports {
csv.enabled true
}
}
At least it's fully suited for my needs with integration and functional testing.