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

com.testfabrik.webmate.javasdk.testmgmt.TestRunEvaluationStatus Maven / Gradle / Ivy

There is a newer version: 0.56
Show newest version
package com.testfabrik.webmate.javasdk.testmgmt;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;

/**
 * The evaluation status of a TestRun represents the result of a TestRun, i.e. if
 * errors have been found or not. During a TestRun, the verdict may still be pending.
 */
public enum TestRunEvaluationStatus {
    UNKNOWN("unknown"),
    FAILED("failed"),
    PASSED("passed"),
    PENDING_PASSED("pending_passed"),
    PENDING_FAILED("pending_failed"),
    SKIPPED("skipped");

    String name;


    @JsonCreator
    TestRunEvaluationStatus(String value) {
        this.name = value;
    }

    @JsonValue
    public String getValue() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy