(_ context.Context, options client.ContainerCreateOptions)
| 88 | } |
| 89 | |
| 90 | func (f *fakeClient) ContainerCreate(_ context.Context, options client.ContainerCreateOptions) (client.ContainerCreateResult, error) { |
| 91 | if f.createContainerFunc != nil { |
| 92 | return f.createContainerFunc(options) |
| 93 | } |
| 94 | return client.ContainerCreateResult{}, nil |
| 95 | } |
| 96 | |
| 97 | func (f *fakeClient) ContainerRemove(ctx context.Context, containerID string, options client.ContainerRemoveOptions) (client.ContainerRemoveResult, error) { |
| 98 | if f.containerRemoveFunc != nil { |