| 51 | } |
| 52 | |
| 53 | type MockHTTPClient struct { |
| 54 | DoDo func(req *http.Request) (*http.Response, error) |
| 55 | } |
| 56 | |
| 57 | func (m *MockHTTPClient) Do(req *http.Request) (*http.Response, error) { |
| 58 | if m.DoDo != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected