(ctx context.Context, name string, config containertypes.ExecOptions)
| 161 | } |
| 162 | |
| 163 | func (m MockClient) ContainerExecCreate(ctx context.Context, name string, config containertypes.ExecOptions) (common.IDResponse, error) { |
| 164 | if m.ContainerExecCreateFn == nil { |
| 165 | return common.IDResponse{}, nil |
| 166 | } |
| 167 | return m.ContainerExecCreateFn(ctx, name, config) |
| 168 | } |
| 169 | |
| 170 | func (m MockClient) ContainerExecInspect(ctx context.Context, id string) (containertypes.ExecInspect, error) { |
| 171 | if m.ContainerExecInspectFn == nil { |
no outgoing calls
no test coverage detected