fun getCountString()

in src/main/kotlin/com/jetbrains/plugin/jtreg/configuration/RepeatCount.kt [28:35]


    fun getCountString(count: Int): String {
        if (count > 1) {
            return "@${N}count"
        }
        if (count == -2) return UNTIL_FAILURE
        if (count == -3) return UNTIL_SUCCESS
        return ONCE
    }