(t *testing.T)
| 220 | } |
| 221 | |
| 222 | func TestVerify_Assert(t *testing.T) { |
| 223 | tmpDir := createVerifyTestFiles(t) |
| 224 | resetVerifyFlags() |
| 225 | taskDir = tmpDir |
| 226 | verifyTaskID = "003" |
| 227 | |
| 228 | output, err := captureVerifyOutput(t) |
| 229 | if err != nil { |
| 230 | t.Fatalf("unexpected error: %v", err) |
| 231 | } |
| 232 | |
| 233 | if !strings.Contains(output, "PEND") { |
| 234 | t.Errorf("expected PEND in output, got: %s", output) |
| 235 | } |
| 236 | if !strings.Contains(output, "1 pending") { |
| 237 | t.Errorf("expected '1 pending' in output, got: %s", output) |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | func TestVerify_Mixed(t *testing.T) { |
| 242 | tmpDir := createVerifyTestFiles(t) |
nothing calls this directly
no test coverage detected