(_ context.Context, execID string, _ client.ExecInspectOptions)
| 77 | } |
| 78 | |
| 79 | func (f *fakeClient) ExecInspect(_ context.Context, execID string, _ client.ExecInspectOptions) (client.ExecInspectResult, error) { |
| 80 | if f.execInspectFunc != nil { |
| 81 | return f.execInspectFunc(execID) |
| 82 | } |
| 83 | return client.ExecInspectResult{}, nil |
| 84 | } |
| 85 | |
| 86 | func (*fakeClient) ExecStart(context.Context, string, client.ExecStartOptions) (client.ExecStartResult, error) { |
| 87 | return client.ExecStartResult{}, nil |