(_ context.Context, containerID string, config client.ExecCreateOptions)
| 70 | } |
| 71 | |
| 72 | func (f *fakeClient) ExecCreate(_ context.Context, containerID string, config client.ExecCreateOptions) (client.ExecCreateResult, error) { |
| 73 | if f.execCreateFunc != nil { |
| 74 | return f.execCreateFunc(containerID, config) |
| 75 | } |
| 76 | return client.ExecCreateResult{}, nil |
| 77 | } |
| 78 | |
| 79 | func (f *fakeClient) ExecInspect(_ context.Context, execID string, _ client.ExecInspectOptions) (client.ExecInspectResult, error) { |
| 80 | if f.execInspectFunc != nil { |