(ctx context.Context, options client.SecretListOptions)
| 29 | } |
| 30 | |
| 31 | func (c *fakeClient) SecretList(ctx context.Context, options client.SecretListOptions) (client.SecretListResult, error) { |
| 32 | if c.secretListFunc != nil { |
| 33 | return c.secretListFunc(ctx, options) |
| 34 | } |
| 35 | return client.SecretListResult{}, nil |
| 36 | } |
| 37 | |
| 38 | func (c *fakeClient) SecretRemove(ctx context.Context, name string, options client.SecretRemoveOptions) (client.SecretRemoveResult, error) { |
| 39 | if c.secretRemoveFunc != nil { |
no outgoing calls
no test coverage detected