| 34 | var nevererrc chan error |
| 35 | |
| 36 | type testLW struct { |
| 37 | ListFunc func(options metav1.ListOptions) (runtime.Object, error) |
| 38 | WatchFunc func(options metav1.ListOptions) (watch.Interface, error) |
| 39 | } |
| 40 | |
| 41 | func (t *testLW) List(options metav1.ListOptions) (runtime.Object, error) { |
| 42 | return t.ListFunc(options) |
nothing calls this directly
no outgoing calls
no test coverage detected