(defaults kube.ObjectMeta, source string, objects []deploy.KubeObject)
| 163 | } |
| 164 | |
| 165 | func testRandomContainer(defaults kube.ObjectMeta, source string, objects []deploy.KubeObject) *Container { |
| 166 | kubeContainer := testNewKubeContainer(randomString(10), randomString(15)) |
| 167 | container, _ := NewContainer(kubeContainer, defaults, source, objects...) |
| 168 | return container |
| 169 | } |
| 170 | |
| 171 | var ( |
| 172 | testKubeContainerSourcegraph = kube.Container{ |
nothing calls this directly
no test coverage detected