(_ context.Context, volumeID string, options client.VolumeInspectOptions)
| 23 | } |
| 24 | |
| 25 | func (c *fakeClient) VolumeInspect(_ context.Context, volumeID string, options client.VolumeInspectOptions) (client.VolumeInspectResult, error) { |
| 26 | if c.volumeInspectFunc != nil { |
| 27 | return c.volumeInspectFunc(volumeID) |
| 28 | } |
| 29 | return client.VolumeInspectResult{}, nil |
| 30 | } |
| 31 | |
| 32 | func (c *fakeClient) VolumeList(_ context.Context, options client.VolumeListOptions) (client.VolumeListResult, error) { |
| 33 | if c.volumeListFunc != nil { |
no outgoing calls
no test coverage detected