(req *http.Request)
| 320 | } |
| 321 | |
| 322 | func (rt *fakeRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) { |
| 323 | rt.Req = req |
| 324 | return rt.Resp, rt.Err |
| 325 | } |
| 326 | |
| 327 | type chainRoundTripper struct { |
| 328 | rt http.RoundTripper |
no outgoing calls
no test coverage detected