| 11 | ) |
| 12 | |
| 13 | type MockProvider struct { |
| 14 | NameStr string |
| 15 | URL string |
| 16 | Bridged []string |
| 17 | Passthrough []string |
| 18 | InterceptorFunc func(w http.ResponseWriter, r *http.Request, tracer trace.Tracer) (intercept.Interceptor, error) |
| 19 | } |
| 20 | |
| 21 | func (m *MockProvider) Type() string { return m.NameStr } |
| 22 | func (m *MockProvider) Name() string { return m.NameStr } |
nothing calls this directly
no outgoing calls
no test coverage detected