(ctx context.Context, id string, options client.SecretInspectOptions)
| 22 | } |
| 23 | |
| 24 | func (c *fakeClient) SecretInspect(ctx context.Context, id string, options client.SecretInspectOptions) (client.SecretInspectResult, error) { |
| 25 | if c.secretInspectFunc != nil { |
| 26 | return c.secretInspectFunc(ctx, id, options) |
| 27 | } |
| 28 | return client.SecretInspectResult{}, nil |
| 29 | } |
| 30 | |
| 31 | func (c *fakeClient) SecretList(ctx context.Context, options client.SecretListOptions) (client.SecretListResult, error) { |
| 32 | if c.secretListFunc != nil { |
no outgoing calls
no test coverage detected