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

com.github.tomakehurst.wiremock.verification.diff.CustomMatcherWrapper Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package com.github.tomakehurst.wiremock.verification.diff;

import com.github.tomakehurst.wiremock.http.Request;
import com.github.tomakehurst.wiremock.matching.MatchResult;
import com.github.tomakehurst.wiremock.matching.NamedValueMatcher;
import com.github.tomakehurst.wiremock.matching.ValueMatcher;

public class CustomMatcherWrapper implements NamedValueMatcher {

    private final ValueMatcher matcher;

    public CustomMatcherWrapper(ValueMatcher matcher) {
        this.matcher = matcher;
    }

    @Override
    public String getName() {
        return "custom matcher";
    }

    @Override
    public String getExpected() {
        return "[custom matcher]";
    }

    @Override
    public MatchResult match(Request value) {
        return matcher.match(value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy