(ctx context.Context, options client.ContainerListOptions)
| 35 | } |
| 36 | |
| 37 | func (c *fakeClient) ContainerList(ctx context.Context, options client.ContainerListOptions) (client.ContainerListResult, error) { |
| 38 | if c.containerListFunc != nil { |
| 39 | return c.containerListFunc(ctx, options) |
| 40 | } |
| 41 | return client.ContainerListResult{}, nil |
| 42 | } |
| 43 | |
| 44 | func (c *fakeClient) ImageList(ctx context.Context, options client.ImageListOptions) (client.ImageListResult, error) { |
| 45 | if c.imageListFunc != nil { |