Changeset View
Changeset View
Standalone View
Standalone View
build.gradle
Show First 20 Lines • Show All 124 Lines • ▼ Show 20 Lines | reports { | ||||
html.destination file("${buildDir}/jacocoHtml") | html.destination file("${buildDir}/jacocoHtml") | ||||
} | } | ||||
} | } | ||||
jacocoTestCoverageVerification { | jacocoTestCoverageVerification { | ||||
violationRules { | violationRules { | ||||
rule { | rule { | ||||
limit { | limit { | ||||
minimum = 0.5 | minimum = 0.7 | ||||
} | } | ||||
} | } | ||||
} | } | ||||
} | } | ||||
jacocoTestCoverageVerification.dependsOn(test) | jacocoTestCoverageVerification.dependsOn(test) | ||||
jacocoTestCoverageVerification.finalizedBy(jacocoTestReport) | jacocoTestCoverageVerification.finalizedBy(jacocoTestReport) | ||||
task coverage {} | task coverage {} | ||||
▲ Show 20 Lines • Show All 138 Lines • Show Last 20 Lines |