12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- goog.setTestOnly('goog.testing.MockInterface');
- goog.provide('goog.testing.MockInterface');
- goog.testing.MockInterface = function() {};
- goog.testing.MockInterface.prototype.$replay = function() {};
- goog.testing.MockInterface.prototype.$reset = function() {};
- goog.testing.MockInterface.prototype.$verify = function() {};
|