| 2085 | } |
| 2086 | |
| 2087 | type delayedDNSProviderMock struct { |
| 2088 | resolved []string |
| 2089 | delay int |
| 2090 | } |
| 2091 | |
| 2092 | func (p *delayedDNSProviderMock) Resolve(_ context.Context, addrs []string) error { |
| 2093 | if p.delay == 0 { |
nothing calls this directly
no outgoing calls
no test coverage detected