testRandomExtension selects and returns one of the "ObjectExtensions" at random
()
| 382 | |
| 383 | // testRandomExtension selects and returns one of the "ObjectExtensions" at random |
| 384 | func testRandomExtension() string { |
| 385 | num := rand.Intn(len(ObjectExtensions)) |
| 386 | return ObjectExtensions[num] |
| 387 | } |
| 388 | |
| 389 | func testClearTypeInfo(obj deploy.KubeObject) { |
| 390 | obj.GetObjectKind().SetGroupVersionKind(nil) |
no outgoing calls
no test coverage detected