(context.Context, client.SwarmInspectOptions)
| 45 | } |
| 46 | |
| 47 | func (cli *fakeClient) SwarmInspect(context.Context, client.SwarmInspectOptions) (client.SwarmInspectResult, error) { |
| 48 | if cli.swarmInspectFunc != nil { |
| 49 | return cli.swarmInspectFunc() |
| 50 | } |
| 51 | return client.SwarmInspectResult{}, nil |
| 52 | } |
| 53 | |
| 54 | func (cli *fakeClient) SwarmGetUnlockKey(ctx context.Context) (client.SwarmGetUnlockKeyResult, error) { |
| 55 | if cli.swarmGetUnlockKeyFunc != nil { |
no outgoing calls
no test coverage detected