| 13 | var errFakeFetch = errors.New("fake fetch error") |
| 14 | |
| 15 | type fakeCallbackClient struct { |
| 16 | raw string |
| 17 | err error |
| 18 | } |
| 19 | |
| 20 | func (f fakeCallbackClient) CallAPI(_ context.Context, _, _ string, _ interface{}) (json.RawMessage, error) { |
| 21 | if f.err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected