(req *http.Request)
| 55 | // HTTPClient is an interface for testing a request object. |
| 56 | type HTTPClient interface { |
| 57 | Do(req *http.Request) (*http.Response, error) |
| 58 | } |
| 59 | |
| 60 | // ResponseWrapper is an interface for getting a response. |
no outgoing calls