5 / 71 · 11 Manual Testing Fundamentals · Writing Test Cases← prev⊞ allnext →☰ Read as one page
1.5Test Case Maintenance
Writing test cases is only half the job. Maintaining them is the other half.
Signs Your Test Cases Need Updating
- The feature was redesigned but the test cases still reference the old UI
- Steps reference environments or URLs that no longer exist
- Test data (specific user accounts, product IDs) has been cleaned up
- New edge cases were discovered in production but never added to the suite
Maintenance Practices
- Review test cases during sprint refinement — if a story modifies an existing feature, flag the related test cases for update.
- Tag test cases with feature areas — makes it easy to find all tests related to "checkout" or "user management."
- Archive, do not delete — if a feature is removed, move the test cases to an archive folder rather than deleting them. They may be useful for regression if the feature returns.
- Version your test cases — if using files (Markdown, spreadsheets), keep them in source control. If using a tool, use the tool's versioning feature.