(_ context.Context, options client.ContainerListOptions)
| 56 | } |
| 57 | |
| 58 | func (f *fakeClient) ContainerList(_ context.Context, options client.ContainerListOptions) (client.ContainerListResult, error) { |
| 59 | if f.containerListFunc != nil { |
| 60 | return f.containerListFunc(options) |
| 61 | } |
| 62 | return client.ContainerListResult{}, nil |
| 63 | } |
| 64 | |
| 65 | func (f *fakeClient) ContainerInspect(_ context.Context, containerID string, _ client.ContainerInspectOptions) (client.ContainerInspectResult, error) { |
| 66 | if f.inspectFunc != nil { |
no outgoing calls
no test coverage detected