| 1732 | } |
| 1733 | |
| 1734 | type mockESTransport struct { |
| 1735 | PerformFunc func(*http.Request) (*http.Response, error) |
| 1736 | CloseFunc func(context.Context) error |
| 1737 | } |
| 1738 | |
| 1739 | func (m mockESTransport) Perform(req *http.Request) (*http.Response, error) { |
| 1740 | if m.PerformFunc != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected