(t *testing.T)
| 63 | } |
| 64 | |
| 65 | func newFixture(t *testing.T) *fixture { |
| 66 | f := &fixture{} |
| 67 | f.t = t |
| 68 | f.objects = []runtime.Object{} |
| 69 | f.kubeobjects = []runtime.Object{} |
| 70 | return f |
| 71 | } |
| 72 | |
| 73 | func newFoo(name string, replicas *int32) *samplecontroller.Foo { |
| 74 | return &samplecontroller.Foo{ |
no outgoing calls
no test coverage detected
searching dependent graphs…