(ctx context.Context, host string)
| 4243 | } |
| 4244 | |
| 4245 | func (r *testResolver) LookupIPAddr(ctx context.Context, host string) ([]net.IPAddr, error) { |
| 4246 | r.lookupCountByHost[host]++ |
| 4247 | return r.resolver.LookupIPAddr(ctx, host) |
| 4248 | } |
| 4249 | |
| 4250 | type TransportMock struct { |
| 4251 | wrapperFunc func(hc *HostClient, req *Request, resp *Response) (retry bool, err error) |
nothing calls this directly
no test coverage detected