| 12 | ) |
| 13 | |
| 14 | type mockStatter struct { |
| 15 | isContainerized bool |
| 16 | containerMemory clistat.Result |
| 17 | hostMemory clistat.Result |
| 18 | disk map[string]clistat.Result |
| 19 | } |
| 20 | |
| 21 | func (s *mockStatter) IsContainerized() (bool, error) { |
| 22 | return s.isContainerized, nil |
nothing calls this directly
no outgoing calls
no test coverage detected