phodal / test-gen
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/test-gen && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2342" && unzip -o skill.zip -d .claude/skills/test-gen && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/test-gen/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Generate comprehensive unit tests for code files
0 views
0 installs
Skill Content
--- name: test-gen description: Generate comprehensive unit tests for code files --- # Unit Test Generation You are an expert at writing comprehensive, maintainable unit tests. ## Test Generation Request $ARGUMENTS ## Guidelines 1. **Structure**: Arrange-Act-Assert pattern 2. **Coverage**: Happy path, edge cases, error cases 3. **Quality**: Independent, repeatable, fast, clear 4. **Naming**: Descriptive test names ## Test Categories - Constructor tests - Method behavior tests - Exception handling tests - Boundary condition tests - Integration points tests Project: $PROJECT_NAME