(ctx context.Context, id string)
| 168 | } |
| 169 | |
| 170 | func (m MockClient) ContainerExecInspect(ctx context.Context, id string) (containertypes.ExecInspect, error) { |
| 171 | if m.ContainerExecInspectFn == nil { |
| 172 | return containertypes.ExecInspect{ |
| 173 | Pid: 123, |
| 174 | }, nil |
| 175 | } |
| 176 | |
| 177 | return m.ContainerExecInspectFn(ctx, id) |
| 178 | } |
| 179 | |
| 180 | func (MockClient) ContainerExecResize(_ context.Context, _ string, _ containertypes.ResizeOptions) error { |
| 181 | panic("not implemented") |
no outgoing calls
no test coverage detected