matchers.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // Copyright 2009 The Closure Library Authors. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS-IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. /**
  15. * @fileoverview Mock matchers for event related arguments.
  16. */
  17. goog.setTestOnly('goog.testing.events.EventMatcher');
  18. goog.provide('goog.testing.events.EventMatcher');
  19. goog.require('goog.events.Event');
  20. goog.require('goog.testing.mockmatchers.ArgumentMatcher');
  21. /**
  22. * A matcher that verifies that an argument is a {@code goog.events.Event} of a
  23. * particular type.
  24. * @param {string} type The single type the event argument must be of.
  25. * @constructor
  26. * @extends {goog.testing.mockmatchers.ArgumentMatcher}
  27. * @final
  28. */
  29. goog.testing.events.EventMatcher = function(type) {
  30. goog.testing.mockmatchers.ArgumentMatcher.call(this, function(obj) {
  31. return obj instanceof goog.events.Event && obj.type == type;
  32. }, 'isEventOfType(' + type + ')');
  33. };
  34. goog.inherits(
  35. goog.testing.events.EventMatcher,
  36. goog.testing.mockmatchers.ArgumentMatcher);