(_ context.Context, id string, options client.ExecResizeOptions)
| 169 | } |
| 170 | |
| 171 | func (f *fakeClient) ExecResize(_ context.Context, id string, options client.ExecResizeOptions) (client.ExecResizeResult, error) { |
| 172 | if f.containerExecResizeFunc != nil { |
| 173 | return f.containerExecResizeFunc(id, options) |
| 174 | } |
| 175 | return client.ExecResizeResult{}, nil |
| 176 | } |
| 177 | |
| 178 | func (f *fakeClient) ContainerKill(ctx context.Context, containerID string, options client.ContainerKillOptions) (client.ContainerKillResult, error) { |
| 179 | if f.containerKillFunc != nil { |