(_ context.Context, containerID string, options client.ContainerStatPathOptions)
| 116 | } |
| 117 | |
| 118 | func (f *fakeClient) ContainerStatPath(_ context.Context, containerID string, options client.ContainerStatPathOptions) (client.ContainerStatPathResult, error) { |
| 119 | if f.containerStatPathFunc != nil { |
| 120 | return f.containerStatPathFunc(containerID, options.Path) |
| 121 | } |
| 122 | return client.ContainerStatPathResult{}, nil |
| 123 | } |
| 124 | |
| 125 | func (f *fakeClient) CopyFromContainer(_ context.Context, containerID string, options client.CopyFromContainerOptions) (client.CopyFromContainerResult, error) { |
| 126 | if f.containerCopyFromFunc != nil { |
no outgoing calls
no test coverage detected