com.github.tomakehurst.wiremock.verification.diff.CustomMatcherWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wiremock-jre8-standalone Show documentation
Show all versions of wiremock-jre8-standalone Show documentation
A web service test double for all occasions - standalone edition
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