(ctx context.Context, options client.ImageListOptions)
| 42 | } |
| 43 | |
| 44 | func (c *fakeClient) ImageList(ctx context.Context, options client.ImageListOptions) (client.ImageListResult, error) { |
| 45 | if c.imageListFunc != nil { |
| 46 | return c.imageListFunc(ctx, options) |
| 47 | } |
| 48 | return client.ImageListResult{}, nil |
| 49 | } |
| 50 | |
| 51 | func (c *fakeClient) NetworkList(ctx context.Context, options client.NetworkListOptions) (client.NetworkListResult, error) { |
| 52 | if c.networkListFunc != nil { |
no outgoing calls
no test coverage detected