()
| 180 | }); |
| 181 | |
| 182 | function XMLHttpRequestStub() { |
| 183 | this.readyState = 4; |
| 184 | this.status = 200; |
| 185 | this.responseText = ''; |
| 186 | } |
| 187 | XMLHttpRequestStub.prototype.open = function open() {}; |
| 188 | XMLHttpRequestStub.prototype.send = function send() { |
| 189 | if (typeof this.onload === 'function') { |
nothing calls this directly
no outgoing calls
no test coverage detected