bodyWith function

Matcher bodyWith(
  1. Matcher bodyMatcher
)

Implementation

Matcher bodyWith(Matcher bodyMatcher) {
  return requestMatcher().having((r) => r.body, "body", bodyMatcher);
}