| 25 | ) |
| 26 | |
| 27 | type mockHTTPClient struct { |
| 28 | doFunc func(req *http.Request) (*http.Response, error) |
| 29 | } |
| 30 | |
| 31 | func (m *mockHTTPClient) Do(req *http.Request) (*http.Response, error) { |
| 32 | return m.doFunc(req) |
nothing calls this directly
no outgoing calls
no test coverage detected