(ctx context.Context, options client.SecretCreateOptions)
| 15 | } |
| 16 | |
| 17 | func (c *fakeClient) SecretCreate(ctx context.Context, options client.SecretCreateOptions) (client.SecretCreateResult, error) { |
| 18 | if c.secretCreateFunc != nil { |
| 19 | return c.secretCreateFunc(ctx, options) |
| 20 | } |
| 21 | return client.SecretCreateResult{}, nil |
| 22 | } |
| 23 | |
| 24 | func (c *fakeClient) SecretInspect(ctx context.Context, id string, options client.SecretInspectOptions) (client.SecretInspectResult, error) { |
| 25 | if c.secretInspectFunc != nil { |
no outgoing calls
no test coverage detected