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

com.testfabrik.webmate.javasdk.testmgmt.TestExecutionEvaluationStatus 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;

public enum TestExecutionEvaluationStatus {
    Passed("passed"),
    Failed("failed"),
    Skipped("skipped"),
    PendingPassed("pending_passed"),
    PendingFailed("pending_failed");

    private final String value;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy