(_ context.Context, containerID string, options client.ContainerStartOptions)
| 155 | } |
| 156 | |
| 157 | func (f *fakeClient) ContainerStart(_ context.Context, containerID string, options client.ContainerStartOptions) (client.ContainerStartResult, error) { |
| 158 | if f.containerStartFunc != nil { |
| 159 | return f.containerStartFunc(containerID, options) |
| 160 | } |
| 161 | return client.ContainerStartResult{}, nil |
| 162 | } |
| 163 | |
| 164 | func (f *fakeClient) ContainerExport(_ context.Context, containerID string, _ client.ContainerExportOptions) (client.ContainerExportResult, error) { |
| 165 | if f.containerExportFunc != nil { |
no outgoing calls
no test coverage detected