increase test code coverage thresholds

This commit is contained in:
Michael Hoennig 2022-09-21 09:44:25 +02:00
parent 00174e4c4a
commit 6ec4c86ad6

View File

@ -213,7 +213,7 @@ jacocoTestCoverageVerification {
violationRules { violationRules {
rule { rule {
limit { limit {
minimum = 0.90 minimum = 0.95
} }
} }
@ -233,7 +233,7 @@ jacocoTestCoverageVerification {
limit { limit {
counter = 'LINE' counter = 'LINE'
value = 'COVEREDRATIO' value = 'COVEREDRATIO'
minimum = 0.95 minimum = 0.98
} }
} }
rule { rule {
@ -247,7 +247,7 @@ jacocoTestCoverageVerification {
limit { limit {
counter = 'BRANCH' counter = 'BRANCH'
value = 'COVEREDRATIO' value = 'COVEREDRATIO'
minimum = 0.95 minimum = 1.00
} }
} }
} }