You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kover-gradle-plugin/src/functionalTest/kotlin/kotlinx/kover/gradle/plugin/test/functional/framework/checker/Checker.kt
+4
Original file line number
Diff line number
Diff line change
@@ -460,6 +460,10 @@ private class CounterImpl(
460
460
assertNull(values, "Counter '$symbol' with type '$type' isn't absent")
461
461
}
462
462
463
+
overridefunassertPresent() {
464
+
assertNotNull(values, "Counter for '$symbol' with type '$type' isn't present in report")
465
+
}
466
+
463
467
overridefunassertFullyMissed() {
464
468
assertNotNull(values, "Counter '$symbol' with type '$type' isn't fully missed because it absent")
465
469
assertTrue(values.missed >0, "Counter '$symbol' with type '$type' isn't fully missed")
Copy file name to clipboardExpand all lines: kover-gradle-plugin/src/functionalTest/kotlin/kotlinx/kover/gradle/plugin/test/functional/framework/checker/CheckerTypes.kt
Copy file name to clipboardExpand all lines: kover-gradle-plugin/src/functionalTest/kotlin/kotlinx/kover/gradle/plugin/test/functional/framework/runner/BuildsRunner.kt
Copy file name to clipboardExpand all lines: kover-gradle-plugin/src/functionalTest/kotlin/kotlinx/kover/gradle/plugin/test/functional/framework/starter/Commons.kt
0 commit comments