fakeLowLevelClient records calls made to it for test assertions.
| 29 | |
| 30 | // fakeLowLevelClient records calls made to it for test assertions. |
| 31 | type fakeLowLevelClient struct { |
| 32 | containers []container.Summary |
| 33 | execCmds [][]string |
| 34 | untarCount int |
| 35 | } |
| 36 | |
| 37 | func (f *fakeLowLevelClient) ContainersForService(_ context.Context, _ string, _ string) ([]container.Summary, error) { |
| 38 | return f.containers, nil |
nothing calls this directly
no outgoing calls
no test coverage detected