(_ context.Context, containerID string, options client.CopyToContainerOptions)
| 130 | } |
| 131 | |
| 132 | func (f *fakeClient) CopyToContainer(_ context.Context, containerID string, options client.CopyToContainerOptions) (client.CopyToContainerResult, error) { |
| 133 | if f.containerCopyToFunc != nil { |
| 134 | return f.containerCopyToFunc(containerID, options) |
| 135 | } |
| 136 | return client.CopyToContainerResult{}, nil |
| 137 | } |
| 138 | |
| 139 | func (f *fakeClient) ContainerLogs(_ context.Context, containerID string, options client.ContainerLogsOptions) (client.ContainerLogsResult, error) { |
| 140 | if f.logFunc != nil { |
no outgoing calls
no test coverage detected