(ctx context.Context, containerID string, options client.ContainerRemoveOptions)
| 95 | } |
| 96 | |
| 97 | func (f *fakeClient) ContainerRemove(ctx context.Context, containerID string, options client.ContainerRemoveOptions) (client.ContainerRemoveResult, error) { |
| 98 | if f.containerRemoveFunc != nil { |
| 99 | return f.containerRemoveFunc(ctx, containerID, options) |
| 100 | } |
| 101 | return client.ContainerRemoveResult{}, nil |
| 102 | } |
| 103 | |
| 104 | func (f *fakeClient) ImagePull(ctx context.Context, parentReference string, options client.ImagePullOptions) (client.ImagePullResponse, error) { |
| 105 | if f.imagePullFunc != nil { |