Coverage Summary for Class: LevelKt (cloud.mindbox.mobile_sdk.logger)

Class Class, % Method, % Branch, % Line, % Instruction, %
LevelKt 100% (1/1) 50% (1/2) 50% (2/4) 50% (1/2) 50% (8/16)


 package cloud.mindbox.mobile_sdk.logger
 
 public enum class Level(public val value: Int) {
 
     VERBOSE(0),
     DEBUG(1),
     INFO(2),
     WARN(3),
     ERROR(4),
     NONE(5)
 }
 
 internal infix fun Level.isAtMost(other: Level): Boolean = value <= other.value
 
 @Suppress("unused")
 internal infix fun Level.isAtLeast(other: Level): Boolean = value >= other.value