(t *testing.T)
| 307 | } |
| 308 | |
| 309 | func newTestRun(t *testing.T) string { |
| 310 | runID := t.Name() + "-" + strings.SplitN(uuid.New().String(), "-", 2)[0] |
| 311 | log.Debugf("New test run %s", runID) |
| 312 | return runID |
| 313 | } |
| 314 | |
| 315 | func TestLifecycleHook_Controlled_CLI(t *testing.T) { |
| 316 | runID := newTestRun(t) |
no test coverage detected