Execute and log
Executing a test means following its steps and comparing the actual result with the expected one. Each execution is logged with a status, which communicates in a standard way how the test went.
| Status | Meaning |
|---|---|
| Pass | Actual result matches the expected one |
| Fail | Actual result differs from the expected one |
| Blocked | Could not be run (e.g. environment down) |
| Skipped | Not applicable in this run |
Capture evidence (screenshots, logs) while executing, especially when a test fails: it will save time when reporting and reproducing the defect.
QuestionToca para voltear
What does the 'blocked' status mean?
The test environment is down and you cannot run a case. Which status do you log?