(_ context.Context, options client.VolumeCreateOptions)
| 16 | } |
| 17 | |
| 18 | func (c *fakeClient) VolumeCreate(_ context.Context, options client.VolumeCreateOptions) (client.VolumeCreateResult, error) { |
| 19 | if c.volumeCreateFunc != nil { |
| 20 | return c.volumeCreateFunc(options) |
| 21 | } |
| 22 | return client.VolumeCreateResult{}, nil |
| 23 | } |
| 24 | |
| 25 | func (c *fakeClient) VolumeInspect(_ context.Context, volumeID string, options client.VolumeInspectOptions) (client.VolumeInspectResult, error) { |
| 26 | if c.volumeInspectFunc != nil { |