(context.Context, client.InfoOptions)
| 109 | } |
| 110 | |
| 111 | func (f *fakeClient) Info(context.Context, client.InfoOptions) (client.SystemInfoResult, error) { |
| 112 | if f.infoFunc != nil { |
| 113 | return f.infoFunc() |
| 114 | } |
| 115 | return client.SystemInfoResult{}, nil |
| 116 | } |
| 117 | |
| 118 | func (f *fakeClient) ContainerStatPath(_ context.Context, containerID string, options client.ContainerStatPathOptions) (client.ContainerStatPathResult, error) { |
| 119 | if f.containerStatPathFunc != nil { |
no outgoing calls
no test coverage detected