GetRandomGroupKind return random group kind. One of "build", "run", "test" or "debug"
()
| 254 | |
| 255 | // GetRandomGroupKind return random group kind. One of "build", "run", "test" or "debug" |
| 256 | func GetRandomGroupKind() schema.CommandGroupKind { |
| 257 | return GroupKinds[GetRandomNumber(0, len(GroupKinds))-1] |
| 258 | } |
| 259 | |
| 260 | // GetRandomValue returns a value selected at random from an array or slice of typed constants such as the ones declared |
| 261 | // in api/test/v200/utils/common/test_utils.go e.g GroupKinds, ComponentType, ProjectTypes, etc |
nothing calls this directly
no test coverage detected