(ctx context.Context, containerID string, options client.ContainerAttachOptions)
| 204 | } |
| 205 | |
| 206 | func (f *fakeClient) ContainerAttach(ctx context.Context, containerID string, options client.ContainerAttachOptions) (client.ContainerAttachResult, error) { |
| 207 | if f.containerAttachFunc != nil { |
| 208 | return f.containerAttachFunc(ctx, containerID, options) |
| 209 | } |
| 210 | return client.ContainerAttachResult{}, nil |
| 211 | } |
| 212 | |
| 213 | func (f *fakeClient) ContainerDiff(ctx context.Context, containerID string, _ client.ContainerDiffOptions) (client.ContainerDiffResult, error) { |
| 214 | if f.containerDiffFunc != nil { |
no outgoing calls
no test coverage detected