This struct mocks a container handler.
| 23 | |
| 24 | // This struct mocks a container handler. |
| 25 | type MockContainerHandler struct { |
| 26 | mock.Mock |
| 27 | Name string |
| 28 | Aliases []string |
| 29 | } |
| 30 | |
| 31 | func NewMockContainerHandler(containerName string) *MockContainerHandler { |
| 32 | return &MockContainerHandler{ |
nothing calls this directly
no outgoing calls
no test coverage detected