| 13 | ) |
| 14 | |
| 15 | type mockAPIClient struct { |
| 16 | OnRESTWithNext func(hostname, method, p string, body io.Reader, data interface{}) (string, error) |
| 17 | OnREST func(hostname, method, p string, body io.Reader, data interface{}) error |
| 18 | } |
| 19 | |
| 20 | func (m mockAPIClient) RESTWithNext(hostname, method, p string, body io.Reader, data interface{}) (string, error) { |
| 21 | return m.OnRESTWithNext(hostname, method, p, body, data) |
nothing calls this directly
no outgoing calls
no test coverage detected