Creates a matcher that will succeed only if all of the given matchers
succeed.
Arguments:
Returns: !goog.labs.testing.AllOfMatcher
The AllOf matcher.
|
code » | ||
Accepts a set of matchers and returns a matcher which matches
values which satisfy the constraints of any of the given matchers.
Arguments:
Returns: !goog.labs.testing.AnyOfMatcher
The AnyOf matcher.
|
code » | ||
Returns a matcher that negates the input matcher. The returned
matcher matches the values not matched by the input matcher and vice-versa.
Arguments:
Returns: !goog.labs.testing.IsNotMatcher
The IsNot matcher.
|
code » |