io.qameta.allure.kotlin.SeverityLevel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of allure-kotlin-commons Show documentation
Show all versions of allure-kotlin-commons Show documentation
Module allure-kotlin-commons of Allure Framework.
package io.qameta.allure.kotlin
enum class SeverityLevel(val value: String) {
BLOCKER("blocker"),
CRITICAL("critical"),
NORMAL("normal"),
MINOR("minor"),
TRIVIAL("trivial");
override fun toString(): String = value
}