(fn roundTripperFunc)
| 297 | } |
| 298 | |
| 299 | func mockHTTPClient(fn roundTripperFunc) *http.Client { |
| 300 | return &http.Client{ |
| 301 | Transport: fn, |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | type roundTripperFunc func(*http.Request) (*http.Response, error) |
| 306 |
no outgoing calls
no test coverage detected
searching dependent graphs…