(t *testing.T)
| 20 | ) |
| 21 | |
| 22 | func newTestSinkContext(t *testing.T) (context.Context, *attemptSink) { |
| 23 | t.Helper() |
| 24 | |
| 25 | sink := &attemptSink{} |
| 26 | return withAttemptSink(context.Background(), sink), sink |
| 27 | } |
| 28 | |
| 29 | type roundTripFunc func(*http.Request) (*http.Response, error) |
| 30 |
no test coverage detected