(ctx context.Context, name string)
| 193 | } |
| 194 | |
| 195 | func (m MockClient) ContainerInspect(ctx context.Context, name string) (dockertypes.ContainerJSON, error) { |
| 196 | if m.ContainerInspectFn == nil { |
| 197 | return dockertypes.ContainerJSON{}, nil |
| 198 | } |
| 199 | return m.ContainerInspectFn(ctx, name) |
| 200 | } |
| 201 | |
| 202 | func (MockClient) ContainerInspectWithRaw(_ context.Context, _ string, _ bool) (dockertypes.ContainerJSON, []byte, error) { |
| 203 | panic("not implemented") |