| 261 | } |
| 262 | |
| 263 | type testClientProvider struct { |
| 264 | t *testing.T |
| 265 | scheme map[string]kindProps |
| 266 | objects []runtime.Object |
| 267 | } |
| 268 | |
| 269 | func (p *testClientProvider) GetClientFor(apiVersion, kind string) (dynamic.NamespaceableResourceInterface, bool, error) { |
| 270 | props := p.scheme[path.Join(apiVersion, kind)] |
nothing calls this directly
no outgoing calls
no test coverage detected