methodWith function

Matcher methodWith(
  1. Matcher methodMatcher
)

Implementation

Matcher methodWith(Matcher methodMatcher) {
  return requestMatcher().having((r) => r.method, "method", methodMatcher);
}