(t *testing.T)
| 361 | } |
| 362 | |
| 363 | func TestVerify_CustomDir(t *testing.T) { |
| 364 | tmpDir := createVerifyTestFiles(t) |
| 365 | resetVerifyFlags() |
| 366 | taskDir = tmpDir |
| 367 | verifyTaskID = "007" |
| 368 | |
| 369 | output, err := captureVerifyOutput(t) |
| 370 | if err != nil { |
| 371 | t.Fatalf("unexpected error: %v", err) |
| 372 | } |
| 373 | |
| 374 | if !strings.Contains(output, "PASS") { |
| 375 | t.Errorf("expected PASS in output, got: %s", output) |
| 376 | } |
| 377 | } |
| 378 | |
| 379 | func TestVerify_FailFast(t *testing.T) { |
| 380 | tmpDir := createVerifyTestFiles(t) |
nothing calls this directly
no test coverage detected