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

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

package info.novatec.testit.livingdoc.call;

public class ResultIsNot implements ResultMatcher {
    private final ResultMatcher condition;

    public ResultIsNot(ResultMatcher condition) {
        this.condition = condition;
    }

    @Override
    public boolean matches(Result result) {
        return ! condition.matches(result);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy