name: generate-tests description: Generate unit and UI tests for specified code with edge cases and mocks
Generate Tests
Generate unit and UI tests for specified code with edge cases and mocks.
Input Required
Specify what to test:
- File path or function/type name
- Type of tests needed: Unit / Integration / UI
- Any specific scenarios to cover
Test Generation Process
Step 1: Analyze Target Code
-
Read the code to understand:
- Public API surface
- Dependencies (what needs mocking)
- Side effects (network, persistence, notifications)
- Edge cases and error conditions
-
Identify testable behaviors:
- Happy path scenarios
- Error/failure scenarios
- Boundary conditions
- State transitions
Step 2: Test Plan
| Scenario | Input | Expected Output | Type |
|---|---|---|---|
| Unit/Integration/UI |
Step 3: Dependencies & Mocks
Dependencies to mock:
| Dependency | Mock Strategy |
|---|---|
| Network service | Protocol + mock implementation |
| Database | In-memory container |
| UserDefaults | Dedicated test suite |
| Date/Time | Inject fixed dates |
Step 4: Generate Tests
Use Swift Testing framework (import Testing) for new tests:
import Testing
@testable import Stuffolio
struct [Target]Tests {
@Test func [scenario]_[condition]_[expectedResult]() async throws {
// Given
// When
// Then
}
}
Step 5: Test Naming Convention
Follow: [method]_[scenario]_[expectedBehavior]
Examples:
-
fetchItems_whenNetworkAvailable_returnsItems -
saveItem_withEmptyTitle_throwsValidationError
Step 6: Coverage Checklist
- All public methods
- All code branches (if/else, switch cases)
- Error throwing paths
- Boundary values (empty, nil, max, min)
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
0
GitHub Forks
0
Created
Mar 2026
Last Updated
3 months ago
tools
tools ide plugins
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!