(ctx context.Context, name string, options containertypes.StartOptions)
| 247 | } |
| 248 | |
| 249 | func (m MockClient) ContainerStart(ctx context.Context, name string, options containertypes.StartOptions) error { |
| 250 | if m.ContainerStartFn == nil { |
| 251 | return nil |
| 252 | } |
| 253 | return m.ContainerStartFn(ctx, name, options) |
| 254 | } |
| 255 | |
| 256 | func (MockClient) ContainerStop(_ context.Context, _ string, _ containertypes.StopOptions) error { |
| 257 | panic("not implemented") |
no outgoing calls
no test coverage detected