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

com.github.tomakehurst.wiremock.matching.AbsentPattern Maven / Gradle / Ivy

package com.github.tomakehurst.wiremock.matching;

import com.fasterxml.jackson.annotation.JsonProperty;

public class AbsentPattern extends StringValuePattern {

    public AbsentPattern(@JsonProperty("absent") String expectedValue) {
        super(expectedValue);
    }

    @Override
    public MatchResult match(String value) {
        return MatchResult.of(value == null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy