Coverage Summary for Class: CheckerUtilsKt (cloud.mindbox.mobile_sdk.utils)
| Class |
Method, %
|
Branch, %
|
Line, %
|
Instruction, %
|
| CheckerUtilsKt |
100%
(1/1)
|
|
100%
(1/1)
|
100%
(10/10)
|
| CheckerUtilsKt$allAllow$1 |
100%
(1/1)
|
|
100%
(1/1)
|
100%
(7/7)
|
| Total |
100%
(2/2)
|
|
100%
(2/2)
|
100%
(17/17)
|
package cloud.mindbox.mobile_sdk.utils
import cloud.mindbox.mobile_sdk.inapp.domain.interfaces.checkers.Checker
internal fun allAllow(vararg checkers: Checker): Boolean = loggingRunCatching(defaultValue = true) {
checkers.all { it.check() }
}