(status int, req *http.Request, body io.Reader, header http.Header)
| 272 | } |
| 273 | |
| 274 | func httpResponseWithHeader(status int, req *http.Request, body io.Reader, header http.Header) *http.Response { |
| 275 | return &http.Response{ |
| 276 | StatusCode: status, |
| 277 | Request: req, |
| 278 | Body: io.NopCloser(body), |
| 279 | Header: header, |
| 280 | } |
| 281 | } |
no outgoing calls
no test coverage detected