| 211 | } |
| 212 | |
| 213 | type roundTripper interface { |
| 214 | RoundTrip(req *http.Request) (*http.Response, error) |
| 215 | } |
| 216 | |
| 217 | func newTestPerfopsClient(tr roundTripper) (*perfops.Client, error) { |
| 218 | c := &http.Client{Transport: tr} |
nothing calls this directly
no outgoing calls
no test coverage detected