(ctx context.Context, id string, options client.CopyToContainerOptions)
| 78 | } |
| 79 | |
| 80 | func (m *mockDockerClient) CopyToContainer(ctx context.Context, id string, options client.CopyToContainerOptions) (client.CopyToContainerResult, error) { |
| 81 | args := m.Called(ctx, id, options.DestinationPath, options.Content, options) |
| 82 | return client.CopyToContainerResult{}, args.Error(0) |
| 83 | } |
| 84 | |
| 85 | type endlessReader struct { |
| 86 | io.Reader |
no test coverage detected