The goog.testing.mockmatchers.RegexpMatch Class

goog.testing.mockmatchers.RegexpMatch
> goog.testing.mockmatchers.ArgumentMatcher

goog.testing.mockmatchers.RegexpMatch(regexp)

A matcher that verifies that an argument matches a given RegExp.

regexp {RegExp}
The regular expression that the argument must match.

.matches(toVerify, opt_expectation)

Inherited from goog.testing.mockmatchers.ArgumentMatcher .

A function that takes a match argument and an optional MockExpectation which (if provided) will get error information and returns whether or not it matches.

toVerify {*}
The argument that should be verified.
opt_expectation {goog.testing.MockExpectation?=}
The expectation for this match.
returns {boolean}
Whether or not a given argument passes verification.