Confirmed users
9,511
edits
No edit summary |
|||
| Line 5: | Line 5: | ||
# Testcase/suite naming structure: | # Testcase/suite naming structure: | ||
## Give meaningful names to testcases | ## Give meaningful names to testcases | ||
# | ### Testcase: e.g.: collections_addNewCollection.py (testarea_nameOfTestCase.py) | ||
### Suite: suite_Collections.py ("suite" is required and standard; _Collections.py is whatever area you're writing it for) | |||
## Testcase: e.g.: collections_addNewCollection.py (testarea_nameOfTestCase.py) | ### Don't use hyphens, as those are illegal in Python class names | ||
## Suite: suite_Collections.py ("suite" is required and standard; _Collections.py is whatever area you're writing it for) | |||
# Have the testcase reviewed by a peer, following these requirements | # Have the testcase reviewed by a peer, following these requirements | ||
# Comment briefly about the flow and aim of the testcase, as well as commenting inline | # Comment briefly about the flow and aim of the testcase, as well as commenting inline | ||