(_ context.Context, containerID string, _ client.ContainerWaitOptions)
| 148 | } |
| 149 | |
| 150 | func (f *fakeClient) ContainerWait(_ context.Context, containerID string, _ client.ContainerWaitOptions) client.ContainerWaitResult { |
| 151 | if f.waitFunc != nil { |
| 152 | return f.waitFunc(containerID) |
| 153 | } |
| 154 | return client.ContainerWaitResult{} |
| 155 | } |
| 156 | |
| 157 | func (f *fakeClient) ContainerStart(_ context.Context, containerID string, options client.ContainerStartOptions) (client.ContainerStartResult, error) { |
| 158 | if f.containerStartFunc != nil { |
no outgoing calls
no test coverage detected