withPort function

Matcher withPort(
  1. Matcher portMatcher
)

Implementation

Matcher withPort(Matcher portMatcher) {
  return isUri().having((u) => u.port, "port", portMatcher);
}