Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 17:54:51 +08:00
commit cd396e3575
13 changed files with 311 additions and 0 deletions

27
commands/test-plan.md Normal file
View File

@@ -0,0 +1,27 @@
Create a comprehensive test plan for the specified feature or code. Include:
1. **Unit Tests**
- List all functions/methods that need unit tests
- Identify edge cases and boundary conditions
- Suggest mock requirements
2. **Integration Tests**
- Identify integration points
- Define test scenarios for component interactions
- Database/API integration test cases
3. **End-to-End Tests**
- User workflow scenarios
- Critical path testing
- Error handling flows
4. **Test Data Requirements**
- Sample data needed
- Test fixtures setup
- Database seeding requirements
5. **Expected Outcomes**
- Success criteria for each test
- Expected vs actual results format
Format the output as actionable test cases that can be implemented immediately.