class WebMock::RequestExecutionVerifier

def failure_message_phrase(is_negated=false)

def failure_message_phrase(is_negated=false)
  negation = is_negated ? "was not" : "was"
  "The request #{request_pattern} #{negation} expected to execute #{quantity_phrase(is_negated)}but it executed #{times(times_executed)}" +
    self.class.executed_requests_message
end