1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- goog.provide('goog.labs.testing.Matcher');
- goog.labs.testing.Matcher = function() {};
- goog.labs.testing.Matcher.prototype.matches = function(value) {};
- goog.labs.testing.Matcher.prototype.describe = function(
- value, opt_description) {};
- goog.labs.testing.Matcher.makeMatcher = function(
- matchesFunction, opt_describeFunction) {
-
- var matcherConstructor = function() {};
-
- matcherConstructor.prototype.matches = matchesFunction;
- if (opt_describeFunction) {
-
- matcherConstructor.prototype.describe = opt_describeFunction;
- }
- return matcherConstructor;
- };
|