(ctx context.Context, serviceID string, options client.ServiceUpdateOptions)
| 52 | } |
| 53 | |
| 54 | func (f *fakeClient) ServiceUpdate(ctx context.Context, serviceID string, options client.ServiceUpdateOptions) (client.ServiceUpdateResult, error) { |
| 55 | if f.serviceUpdateFunc != nil { |
| 56 | return f.serviceUpdateFunc(ctx, serviceID, options) |
| 57 | } |
| 58 | |
| 59 | return client.ServiceUpdateResult{}, nil |
| 60 | } |
| 61 | |
| 62 | func (f *fakeClient) Info(ctx context.Context, _ client.InfoOptions) (client.SystemInfoResult, error) { |
| 63 | if f.infoFunc != nil { |
no outgoing calls
no test coverage detected