| 53 | } |
| 54 | |
| 55 | type roundTripper interface { |
| 56 | RoundTrip(req *http.Request) (*http.Response, error) |
| 57 | } |
| 58 | |
| 59 | func newTestClient(tr roundTripper) (*Client, error) { |
| 60 | c := &http.Client{Transport: tr} |
nothing calls this directly
no outgoing calls
no test coverage detected