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

com.testfabrik.webmate.javasdk.testmgmt.TestRunExecutionStatus 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 TestRunExecutionStatus {
    CREATED("created"),
    RUNNING("running"),
    STOPPED("stopped"),
    FAILED("failed"),
    COMPLETED("completed"),
    PENDING_PASSED("pending_passed"),
    PENDING_FAILED("pending_failed");

    private final String value;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy