(ctx context.Context, execID string, config containertypes.ExecAttachOptions)
| 154 | } |
| 155 | |
| 156 | func (m MockClient) ContainerExecAttach(ctx context.Context, execID string, config containertypes.ExecAttachOptions) (dockertypes.HijackedResponse, error) { |
| 157 | if m.ContainerExecAttachFn == nil { |
| 158 | return dockertypes.HijackedResponse{}, nil |
| 159 | } |
| 160 | return m.ContainerExecAttachFn(ctx, execID, config) |
| 161 | } |
| 162 | |
| 163 | func (m MockClient) ContainerExecCreate(ctx context.Context, name string, config containertypes.ExecOptions) (common.IDResponse, error) { |
| 164 | if m.ContainerExecCreateFn == nil { |
no outgoing calls
no test coverage detected