DryRunClient is an implementation of Client that logs the image operations that would be performed rather than performing them.
| 23 | // DryRunClient is an implementation of Client that logs the image operations that would |
| 24 | // be performed rather than performing them. |
| 25 | type DryRunClient struct{} |
| 26 | |
| 27 | func (i DryRunClient) RunImage(image string, entryPoint string, env map[string]string, args ...string) ([]string, error) { |
| 28 | // Called from collectPluginsImages, retrieve e2e images |
nothing calls this directly
no outgoing calls
no test coverage detected