(context.Context, client.NodeListOptions)
| 26 | } |
| 27 | |
| 28 | func (cli *fakeClient) NodeList(context.Context, client.NodeListOptions) (client.NodeListResult, error) { |
| 29 | if cli.nodeListFunc != nil { |
| 30 | return cli.nodeListFunc() |
| 31 | } |
| 32 | return client.NodeListResult{}, nil |
| 33 | } |
| 34 | |
| 35 | func (cli *fakeClient) NodeRemove(context.Context, string, client.NodeRemoveOptions) (client.NodeRemoveResult, error) { |
| 36 | if cli.nodeRemoveFunc != nil { |
no outgoing calls
no test coverage detected