MockConfigMapsInterface mocks a kubernetes ConfigMapsInterface
| 94 | |
| 95 | // MockConfigMapsInterface mocks a kubernetes ConfigMapsInterface |
| 96 | type MockConfigMapsInterface struct { |
| 97 | corev1.ConfigMapInterface |
| 98 | |
| 99 | objects map[string]*v1.ConfigMap |
| 100 | } |
| 101 | |
| 102 | // Init initializes the MockConfigMapsInterface with the set of releases. |
| 103 | func (mock *MockConfigMapsInterface) Init(t *testing.T, releases ...*rspb.Release) { |
nothing calls this directly
no outgoing calls
no test coverage detected