(_ context.Context, containerID string, _ client.ContainerInspectOptions)
| 63 | } |
| 64 | |
| 65 | func (f *fakeClient) ContainerInspect(_ context.Context, containerID string, _ client.ContainerInspectOptions) (client.ContainerInspectResult, error) { |
| 66 | if f.inspectFunc != nil { |
| 67 | return f.inspectFunc(containerID) |
| 68 | } |
| 69 | return client.ContainerInspectResult{}, nil |
| 70 | } |
| 71 | |
| 72 | func (f *fakeClient) ExecCreate(_ context.Context, containerID string, config client.ExecCreateOptions) (client.ExecCreateResult, error) { |
| 73 | if f.execCreateFunc != nil { |
no outgoing calls
no test coverage detected