The blueprint of all test cases. The protocol depicts the unperformed manual test, understandable by humans. The protocol is written in GIVEN-WHEN-THEN Gherkin syntax:
USE THE PART BELOW TO CREATE A NEW TESTCASE. DONT DELETE EMPTY BULLETPOINTS. DONT FILL OUT ACTUAL/TEST RESULT.
- Description:
- Given
- When I
- Then I
- Actual Result:
- Test Result:
- Priority:
- Risk Assessment (Regressions-Likelihood):
- Testable as Unit Test?
- Notes:
Generate Base Template
To combine all non-README.md files into a single report, with the current date as the filename (format: YYMMDD), and save it under ../reports/
, run:
DATE=$(date +%y%m%d)
(cat ../reports/template.md; echo; find . -type f -name '*.md' ! -name 'README.md' -exec sh -c 'if [ -s "$1" ]; then cat "$1"; echo; fi' _ {} \;) > ../reports/${DATE}.md