(status int, req *http.Request, body io.Reader)
| 268 | } |
| 269 | |
| 270 | func httpResponse(status int, req *http.Request, body io.Reader) *http.Response { |
| 271 | return httpResponseWithHeader(status, req, body, http.Header{}) |
| 272 | } |
| 273 | |
| 274 | func httpResponseWithHeader(status int, req *http.Request, body io.Reader, header http.Header) *http.Response { |
| 275 | return &http.Response{ |
no test coverage detected