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

io.cucumber.plugin.event.Result Maven / Gradle / Ivy

package io.cucumber.plugin.event;

import org.apiguardian.api.API;

import java.time.Duration;
import java.util.Objects;

import static java.util.Objects.requireNonNull;

/**
 * The result of a step, scenario or test run.
 */
@API(status = API.Status.STABLE)
public final class Result {

    private final Status status;
    private final Duration duration;
    private final Throwable error;

    /**
     * Creates a new result.
     *
     * @param status   status of the step or scenario
     * @param duration the duration
     * @param error    the error that caused the failure if any
     */
    public Result(Status status, Duration duration, Throwable error) {
        this.status = requireNonNull(status);
        this.duration = requireNonNull(duration);
        this.error = error;
    }

    public Status getStatus() {
        return status;
    }

    public Duration getDuration() {
        return duration;
    }

    /**
     * Returns the error encountered while executing a step, scenario or test
     * run.
     * 

* Will return null when passed. May return null when status is undefined or * when skipped due to a failing prior step. * * @return the error encountered while executing a step or scenario or null. */ public Throwable getError() { return error; } @Override public int hashCode() { return Objects.hash(status, duration, error); } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; Result result = (Result) o; return status == result.status && Objects.equals(duration, result.duration) && Objects.equals(error, result.error); } @Override public String toString() { return "Result{" + "status=" + status + ", duration=" + duration.getSeconds() + ", error=" + error + '}'; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy