All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.yag.punner.report.Color.kt Maven / Gradle / Ivy

Go to download

Punner is a parallel JUnit test runner and maven plugin which can speed up your unit test.

There is a newer version: 0.9.17
Show newest version
package com.github.yag.punner.report

enum class Color(val code: String) {
    ANSI_BLACK("\u001B[30m"),
    ANSI_RED("\u001B[31m"),
    ANSI_GREEN("\u001B[32m"),
    ANSI_YELLOW("\u001B[33m"),
    ANSI_BLUE("\u001B[34m"),
    ANSI_PURPLE("\u001B[35m"),
    ANSI_CYAN("\u001B[36m"),
    ANSI_WHITE("\u001B[37m"),

    ANSI_RESET("\u001B[0m");

    override fun toString(): String {
        return code
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy