(ctx context.Context, containerID string, options client.ContainerPauseOptions)
| 234 | } |
| 235 | |
| 236 | func (f *fakeClient) ContainerPause(ctx context.Context, containerID string, options client.ContainerPauseOptions) (client.ContainerPauseResult, error) { |
| 237 | if f.containerPauseFunc != nil { |
| 238 | return f.containerPauseFunc(ctx, containerID, options) |
| 239 | } |
| 240 | |
| 241 | return client.ContainerPauseResult{}, nil |
| 242 | } |
| 243 | |
| 244 | func (*fakeClient) Ping(_ context.Context, _ client.PingOptions) (client.PingResult, error) { |
| 245 | return client.PingResult{}, nil |