Method
ContainerRemove
(ctx context.Context, name string, options containertypes.RemoveOptions)
Source from the content-addressed store, hash-verified
| 220 | } |
| 221 | |
| 222 | func (m MockClient) ContainerRemove(ctx context.Context, name string, options containertypes.RemoveOptions) error { |
| 223 | if m.ContainerRemoveFn == nil { |
| 224 | return nil |
| 225 | } |
| 226 | return m.ContainerRemoveFn(ctx, name, options) |
| 227 | } |
| 228 | |
| 229 | func (MockClient) ContainerRename(_ context.Context, _ string, _ string) error { |
| 230 | panic("not implemented") |
Tested by
no test coverage detected