(ctx context.Context, options client.ServiceListOptions)
| 44 | } |
| 45 | |
| 46 | func (f *fakeClient) ServiceList(ctx context.Context, options client.ServiceListOptions) (client.ServiceListResult, error) { |
| 47 | if f.serviceListFunc != nil { |
| 48 | return f.serviceListFunc(ctx, options) |
| 49 | } |
| 50 | |
| 51 | return client.ServiceListResult{}, nil |
| 52 | } |
| 53 | |
| 54 | func (f *fakeClient) ServiceUpdate(ctx context.Context, serviceID string, options client.ServiceUpdateOptions) (client.ServiceUpdateResult, error) { |
| 55 | if f.serviceUpdateFunc != nil { |
no outgoing calls
no test coverage detected