(ctx context.Context, containerID string, options client.ContainerKillOptions)
| 176 | } |
| 177 | |
| 178 | func (f *fakeClient) ContainerKill(ctx context.Context, containerID string, options client.ContainerKillOptions) (client.ContainerKillResult, error) { |
| 179 | if f.containerKillFunc != nil { |
| 180 | return f.containerKillFunc(ctx, containerID, options) |
| 181 | } |
| 182 | return client.ContainerKillResult{}, nil |
| 183 | } |
| 184 | |
| 185 | func (f *fakeClient) ContainerPrune(ctx context.Context, options client.ContainerPruneOptions) (client.ContainerPruneResult, error) { |
| 186 | if f.containerPruneFunc != nil { |
no outgoing calls
no test coverage detected