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

info.novatec.testit.livingdoc.call.ResultIs Maven / Gradle / Ivy

package info.novatec.testit.livingdoc.call;

public final class ResultIs {
    public static ResultMatcher wrong() {
        return new ResultIsWrong();
    }

    public static ResultMatcher not(ResultMatcher condition) {
        return new ResultIsNot(condition);
    }

    public static ResultMatcher exception() {
        return new ResultIsException();
    }

    public static ResultMatcher equalTo(Object value) {
        return new ActualEquals(value);
    }

    public static ResultMatcher right() {
        return new ResultIsRight();
    }

    private ResultIs() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy