module Mocha::ParameterMatchers

def all_of(*matchers)

Other tags:
    Example: One of the parameter matchers does not match. -
    Example: All parameter matchers match. -

Other tags:
    See: Expectation#with -

Returns:
  • (AllOf) - parameter matcher.

Parameters:
  • matchers (*Array) -- parameter matchers.
def all_of(*matchers)
  AllOf.new(*matchers)
end