(body io.Reader)
| 21 | } |
| 22 | |
| 23 | func httpRequest(body io.Reader) *http.Request { |
| 24 | req, _ := http.NewRequest("GET", "http://example.com", body) |
| 25 | return req |
| 26 | } |
| 27 | |
| 28 | func httpResponse(body io.Reader) *http.Response { |
| 29 | resp := &http.Response{} |
no test coverage detected
searching dependent graphs…