TDD Guide - Test Driven Development for Engineering Teams
A comprehensive Test Driven Development skill that provides intelligent test generation, coverage analysis, framework integration, and TDD workflow guidance across multiple languages and testing frameworks.
Capabilities
Test Generation
- Generate Test Cases from Requirements: Convert user stories, API specs, and business requirements into executable test cases
- Create Test Stubs: Generate test function scaffolding with proper naming, imports, and setup/teardown
- Generate Test Fixtures: Create realistic test data, mocks, and fixtures for various scenarios
TDD Workflow Support
- Guide Red-Green-Refactor: Step-by-step guidance through TDD cycles with validation
- Suggest Missing Scenarios: Identify untested edge cases, error conditions, and boundary scenarios
- Review Test Quality: Analyze test isolation, assertions quality, naming conventions, and maintainability
Coverage & Metrics Analysis
- Calculate Coverage: Parse LCOV, JSON, and XML coverage reports for line/branch/function coverage
- Identify Untested Paths: Find code paths, branches, and error handlers without test coverage
- Recommend Improvements: Prioritized recommendations (P0/P1/P2) for coverage gaps and test quality
Framework Integration
- Multi-Framework Support: Jest, Pytest, JUnit, Vitest, Mocha, RSpec adapters
- Generate Boilerplate: Create test files with proper imports, describe blocks, and best practices
- Configure Test Runners: Set up test configuration, coverage tools, and CI integration
Comprehensive Metrics
- Test Coverage: Line, branch, function coverage with gap analysis
- Code Complexity: Cyclomatic complexity, cognitive complexity, testability scoring
- Test Quality: Assertions per test, isolation score, naming quality, test smell detection
- Test Data: Boundary value analysis, edge case identification, mock data generation
- Test Execution: Timing analysis, slow test detection, flakiness detection
- Missing Tests: Uncovered edge cases, error handling gaps, missing integration scenarios
Input Requirements
The skill supports automatic format detection for flexible input:
Source Code
- Languages: TypeScript, JavaScript, Python, Java
- Format: Direct file paths or copy-pasted code blocks
- Detection: Automatic language/framework detection from syntax and imports
Test Artifacts
- Coverage Reports: LCOV (.lcov), JSON (coverage-final.json), XML (cobertura.xml)
- Test Results: JUnit XML, Jest JSON, Pytest JSON, TAP format
- Format: File paths or raw coverage data
Requirements (Optional)
- User Stories: Text descriptions of functionality
- API Specifications: OpenAPI/Swagger, REST endpoints, GraphQL schemas
- Business Requirements: Acceptance criteria, business rules
Input Methods
- Option A: Provide file paths (skill will read files)
- Option B: Copy-paste code/data directly
- Option C: Mix of both (automatically detected)
Output Formats
The skill provides context-aware output optimized for your environment:
Code Files
- Test Files: Generated tests (Jest/Pytest/JUnit/Vitest) with proper structure
- Fixtures: Test data files, mock objects, factory functions
- Mocks: Mock implementations, stub functions, test doubles
Reports
- Markdown: Rich coverage reports, recommendations, quality analysis (Claude Desktop)
- JSON: Machine-readable metrics, structured data for CI/CD integration
- Terminal-Friendly: Simplified output for Claude Code CLI
Smart Defaults
- Desktop/Apps: Rich markdown with tables, code blocks, visual hierarchy
- CLI: Concise, terminal-friendly format with clear sections
- CI/CD: JSON output for automated processing
Progressive Disclosure
- Summary First: High-level overview (<200 tokens)
- Details on Demand: Full analysis available (500-1000 tokens)
- Prioritized: P0 (critical) → P1 (important) → P2 (nice-to-have)
How to Use
Basic Usage
@tdd-guide
I need tests for my authentication module. Here's the code:
[paste code or provide file path]
Generate comprehensive test cases covering happy path, error cases, and edge cases.
Coverage Analysis
@tdd-guide
Analyze test coverage for my TypeScript project. Coverage report: coverage/lcov.info
Identify gaps and provide prioritized recommendations.
TDD Workflow
@tdd-guide
Guide me through TDD for implementing a password validation function.
Requirements:
- Min 8 characters
- At least 1 uppercase, 1 lowercase, 1 number, 1 special char
- No common passwords
Multi-Framework Support
@tdd-guide
Convert these Jest tests to Pytest format:
[paste Jest tests]
Scripts
Core Modules
- test_generator.py: Intelligent test case generation from requirements and code
- coverage_analyzer.py: Parse and analyze coverage reports (LCOV, JSON, XML)
- metrics_calculator.py: Calculate comprehensive test and code quality metrics
- framework_adapter.py: Multi-framework adapter (Jest, Pytest, JUnit, Vitest)
- tdd_workflow.py: Red-green-refactor workflow guidance and validation
- fixture_generator.py: Generate realistic test data and fixtures
- format_detector.py: Automatic language and framework detection
Utilities
- complexity_analyzer.py: Cyclomatic and cognitive complexity analysis
- test_quality_scorer.py: Test quality scoring (isolation, assertions, naming)
- missing_test_detector.py: Identify untested paths and missing scenarios
- output_formatter.py: Context-aware output formatting (Desktop vs CLI)
Best Practices
Test Generation
- Start with Requirements: Write tests from user stories before seeing implementation
- Test Behavior, Not Implementation: Focus on what code does, not how it does it
- One Assertion Focus: Each test should verify one specific behavior
- Descriptive Names: Test names should read like specifications
TDD Workflow
- Red: Write failing test first
- Green: Write minimal code to make it pass
- Refactor: Improve code while keeping tests green
- Repeat: Small iterations, frequent commits
Coverage Goals
- Aim for 80%+: Line coverage baseline for most projects
- 100% Critical Paths: Authentication, payments, data validation must be fully covered
- Branch Coverage Matters: Line coverage alone is insufficient
- Don't Game Metrics: Focus on meaningful tests, not coverage numbers
Test Quality
- Independent Tests: Each test should run in isolation
- Fast Execution: Keep unit tests under 100ms each
- Deterministic: Tests should always produce same results
- Clear Failures: Assertion messages should explain what went wrong
Framework Selection
- Jest: JavaScript/TypeScript projects (React, Node.js)
- Pytest: Python projects (Django, Flask, FastAPI)
- JUnit: Java projects (Spring, Android)
- Vitest: Modern Vite-based projects
Multi-Language Support
TypeScript/JavaScript
- Frameworks: Jest, Vitest, Mocha, Jasmine
- Runners: Node.js, Karma, Playwright
- Coverage: Istanbul/nyc, c8
Python
- Frameworks: Pytest, unittest, nose2
- Runners: pytest, tox, nox
- Coverage: coverage.py, pytest-cov
Java
- Frameworks: JUnit 5, TestNG, Mockito
- Runners: Maven Surefire, Gradle Test
- Coverage: JaCoCo, Cobertura
Limitations
Scope
- Unit Tests Focus: Primarily optimized for unit tests (integration tests require different patterns)
- Static Analysis Only: Cannot execute tests or measure actual code behavior
- Language Support: Best support for TypeScript, JavaScript, Python, Java (other languages limited)
Coverage Analysis
- Report Dependency: Requires existing coverage reports (cannot generate coverage from scratch)
- Format Support: LCOV, JSON, XML only (other formats need conversion)
- Interpretation Context: Coverage numbers need human judgment for meaningfulness
Test Generation
- Baseline Quality: Generated tests provide scaffolding, require human review and refinement
- Complex Logic: Advanced business logic and integration scenarios need manual test design
- Mocking Strategy: Mock/stub strategies should align with project patterns
Framework Integration
- Configuration Required: Test runners need proper setup (this skill doesn't modify package.json or pom.xml)
- Version Compatibility: Generated code targets recent stable versions (Jest 29+, Pytest 7+, JUnit 5+)
When NOT to Use This Skill
- E2E Testing: Use dedicated E2E tools (Playwright, Cypress, Selenium)
- Performance Testing: Use JMeter, k6, or Locust
- Security Testing: Use OWASP ZAP, Burp Suite, or security-focused tools
- Manual Testing: Some scenarios require human exploratory testing
Example Workflows
Workflow 1: Generate Tests from Requirements
Input: User story + API specification
Process: Parse requirements → Generate test cases → Create test stubs
Output: Complete test files ready for implementation
Workflow 2: Improve Coverage
Input: Coverage report + source code
Process: Identify gaps → Suggest tests → Generate test code
Output: Prioritized test cases for uncovered code
Workflow 3: TDD New Feature
Input: Feature requirements
Process: Guide red-green-refactor → Validate each step → Suggest refactorings
Output: Well-tested feature with clean code
Workflow 4: Framework Migration
Input: Tests in Framework A
Process: Parse tests → Translate patterns → Generate equivalent tests
Output: Tests in Framework B with same coverage
Integration Points
CI/CD Integration
- Parse coverage reports from CI artifacts
- Generate coverage badges and reports
- Fail builds on coverage thresholds
- Track coverage trends over time
IDE Integration
- Generate tests for selected code
- Run coverage analysis on save
- Highlight untested code paths
- Quick-fix suggestions for test gaps
Code Review
- Validate test coverage in PRs
- Check test quality standards
- Identify missing test scenarios
- Suggest improvements before merge
Version Support
- Node.js: 16+ (Jest 29+, Vitest 0.34+)
- Python: 3.8+ (Pytest 7+)
- Java: 11+ (JUnit 5.9+)
- TypeScript: 4.5+
Related Skills
This skill works well with:
- code-review: Validate test quality during reviews
- refactoring-assistant: Maintain tests during refactoring
- ci-cd-helper: Integrate coverage in pipelines
- documentation-generator: Generate test documentation
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: tdd-guide-83description: Comprehensive Test Driven Development guide for engineering subagents with multi-framework support, coverage analysis, and intelligent test generation Use when this capability is needed.4---56# TDD Guide - Test Driven Development for Engineering Teams78A comprehensive Test Driven Development skill that provides intelligent test generation, coverage analysis, framework integration, and TDD workflow guidance across multiple languages and testing frameworks.910## Capabilities1112### Test Generation13- **Generate Test Cases from Requirements**: Convert user stories, API specs, and business requirements into executable test cases14- **Create Test Stubs**: Generate test function scaffolding with proper naming, imports, and setup/teardown15- **Generate Test Fixtures**: Create realistic test data, mocks, and fixtures for various scenarios1617### TDD Workflow Support18- **Guide Red-Green-Refactor**: Step-by-step guidance through TDD cycles with validation19- **Suggest Missing Scenarios**: Identify untested edge cases, error conditions, and boundary scenarios20- **Review Test Quality**: Analyze test isolation, assertions quality, naming conventions, and maintainability2122### Coverage & Metrics Analysis23- **Calculate Coverage**: Parse LCOV, JSON, and XML coverage reports for line/branch/function coverage24- **Identify Untested Paths**: Find code paths, branches, and error handlers without test coverage25- **Recommend Improvements**: Prioritized recommendations (P0/P1/P2) for coverage gaps and test quality2627### Framework Integration28- **Multi-Framework Support**: Jest, Pytest, JUnit, Vitest, Mocha, RSpec adapters29- **Generate Boilerplate**: Create test files with proper imports, describe blocks, and best practices30- **Configure Test Runners**: Set up test configuration, coverage tools, and CI integration3132### Comprehensive Metrics33- **Test Coverage**: Line, branch, function coverage with gap analysis34- **Code Complexity**: Cyclomatic complexity, cognitive complexity, testability scoring35- **Test Quality**: Assertions per test, isolation score, naming quality, test smell detection36- **Test Data**: Boundary value analysis, edge case identification, mock data generation37- **Test Execution**: Timing analysis, slow test detection, flakiness detection38- **Missing Tests**: Uncovered edge cases, error handling gaps, missing integration scenarios3940## Input Requirements4142The skill supports **automatic format detection** for flexible input:4344### Source Code45- **Languages**: TypeScript, JavaScript, Python, Java46- **Format**: Direct file paths or copy-pasted code blocks47- **Detection**: Automatic language/framework detection from syntax and imports4849### Test Artifacts50- **Coverage Reports**: LCOV (.lcov), JSON (coverage-final.json), XML (cobertura.xml)51- **Test Results**: JUnit XML, Jest JSON, Pytest JSON, TAP format52- **Format**: File paths or raw coverage data5354### Requirements (Optional)55- **User Stories**: Text descriptions of functionality56- **API Specifications**: OpenAPI/Swagger, REST endpoints, GraphQL schemas57- **Business Requirements**: Acceptance criteria, business rules5859### Input Methods60- **Option A**: Provide file paths (skill will read files)61- **Option B**: Copy-paste code/data directly62- **Option C**: Mix of both (automatically detected)6364## Output Formats6566The skill provides **context-aware output** optimized for your environment:6768### Code Files69- **Test Files**: Generated tests (Jest/Pytest/JUnit/Vitest) with proper structure70- **Fixtures**: Test data files, mock objects, factory functions71- **Mocks**: Mock implementations, stub functions, test doubles7273### Reports74- **Markdown**: Rich coverage reports, recommendations, quality analysis (Claude Desktop)75- **JSON**: Machine-readable metrics, structured data for CI/CD integration76- **Terminal-Friendly**: Simplified output for Claude Code CLI7778### Smart Defaults79- **Desktop/Apps**: Rich markdown with tables, code blocks, visual hierarchy80- **CLI**: Concise, terminal-friendly format with clear sections81- **CI/CD**: JSON output for automated processing8283### Progressive Disclosure84- **Summary First**: High-level overview (<200 tokens)85- **Details on Demand**: Full analysis available (500-1000 tokens)86- **Prioritized**: P0 (critical) → P1 (important) → P2 (nice-to-have)8788## How to Use8990### Basic Usage91```92@tdd-guide9394I need tests for my authentication module. Here's the code:95[paste code or provide file path]9697Generate comprehensive test cases covering happy path, error cases, and edge cases.98```99100### Coverage Analysis101```102@tdd-guide103104Analyze test coverage for my TypeScript project. Coverage report: coverage/lcov.info105106Identify gaps and provide prioritized recommendations.107```108109### TDD Workflow110```111@tdd-guide112113Guide me through TDD for implementing a password validation function.114115Requirements:116- Min 8 characters117- At least 1 uppercase, 1 lowercase, 1 number, 1 special char118- No common passwords119```120121### Multi-Framework Support122```123@tdd-guide124125Convert these Jest tests to Pytest format:126[paste Jest tests]127```128129## Scripts130131### Core Modules132133- **test_generator.py**: Intelligent test case generation from requirements and code134- **coverage_analyzer.py**: Parse and analyze coverage reports (LCOV, JSON, XML)135- **metrics_calculator.py**: Calculate comprehensive test and code quality metrics136- **framework_adapter.py**: Multi-framework adapter (Jest, Pytest, JUnit, Vitest)137- **tdd_workflow.py**: Red-green-refactor workflow guidance and validation138- **fixture_generator.py**: Generate realistic test data and fixtures139- **format_detector.py**: Automatic language and framework detection140141### Utilities142143- **complexity_analyzer.py**: Cyclomatic and cognitive complexity analysis144- **test_quality_scorer.py**: Test quality scoring (isolation, assertions, naming)145- **missing_test_detector.py**: Identify untested paths and missing scenarios146- **output_formatter.py**: Context-aware output formatting (Desktop vs CLI)147148## Best Practices149150### Test Generation1511. **Start with Requirements**: Write tests from user stories before seeing implementation1522. **Test Behavior, Not Implementation**: Focus on what code does, not how it does it1533. **One Assertion Focus**: Each test should verify one specific behavior1544. **Descriptive Names**: Test names should read like specifications155156### TDD Workflow1571. **Red**: Write failing test first1582. **Green**: Write minimal code to make it pass1593. **Refactor**: Improve code while keeping tests green1604. **Repeat**: Small iterations, frequent commits161162### Coverage Goals1631. **Aim for 80%+**: Line coverage baseline for most projects1642. **100% Critical Paths**: Authentication, payments, data validation must be fully covered1653. **Branch Coverage Matters**: Line coverage alone is insufficient1664. **Don't Game Metrics**: Focus on meaningful tests, not coverage numbers167168### Test Quality1691. **Independent Tests**: Each test should run in isolation1702. **Fast Execution**: Keep unit tests under 100ms each1713. **Deterministic**: Tests should always produce same results1724. **Clear Failures**: Assertion messages should explain what went wrong173174### Framework Selection1751. **Jest**: JavaScript/TypeScript projects (React, Node.js)1762. **Pytest**: Python projects (Django, Flask, FastAPI)1773. **JUnit**: Java projects (Spring, Android)1784. **Vitest**: Modern Vite-based projects179180## Multi-Language Support181182### TypeScript/JavaScript183- Frameworks: Jest, Vitest, Mocha, Jasmine184- Runners: Node.js, Karma, Playwright185- Coverage: Istanbul/nyc, c8186187### Python188- Frameworks: Pytest, unittest, nose2189- Runners: pytest, tox, nox190- Coverage: coverage.py, pytest-cov191192### Java193- Frameworks: JUnit 5, TestNG, Mockito194- Runners: Maven Surefire, Gradle Test195- Coverage: JaCoCo, Cobertura196197## Limitations198199### Scope200- **Unit Tests Focus**: Primarily optimized for unit tests (integration tests require different patterns)201- **Static Analysis Only**: Cannot execute tests or measure actual code behavior202- **Language Support**: Best support for TypeScript, JavaScript, Python, Java (other languages limited)203204### Coverage Analysis205- **Report Dependency**: Requires existing coverage reports (cannot generate coverage from scratch)206- **Format Support**: LCOV, JSON, XML only (other formats need conversion)207- **Interpretation Context**: Coverage numbers need human judgment for meaningfulness208209### Test Generation210- **Baseline Quality**: Generated tests provide scaffolding, require human review and refinement211- **Complex Logic**: Advanced business logic and integration scenarios need manual test design212- **Mocking Strategy**: Mock/stub strategies should align with project patterns213214### Framework Integration215- **Configuration Required**: Test runners need proper setup (this skill doesn't modify package.json or pom.xml)216- **Version Compatibility**: Generated code targets recent stable versions (Jest 29+, Pytest 7+, JUnit 5+)217218### When NOT to Use This Skill219- **E2E Testing**: Use dedicated E2E tools (Playwright, Cypress, Selenium)220- **Performance Testing**: Use JMeter, k6, or Locust221- **Security Testing**: Use OWASP ZAP, Burp Suite, or security-focused tools222- **Manual Testing**: Some scenarios require human exploratory testing223224## Example Workflows225226### Workflow 1: Generate Tests from Requirements227```228Input: User story + API specification229Process: Parse requirements → Generate test cases → Create test stubs230Output: Complete test files ready for implementation231```232233### Workflow 2: Improve Coverage234```235Input: Coverage report + source code236Process: Identify gaps → Suggest tests → Generate test code237Output: Prioritized test cases for uncovered code238```239240### Workflow 3: TDD New Feature241```242Input: Feature requirements243Process: Guide red-green-refactor → Validate each step → Suggest refactorings244Output: Well-tested feature with clean code245```246247### Workflow 4: Framework Migration248```249Input: Tests in Framework A250Process: Parse tests → Translate patterns → Generate equivalent tests251Output: Tests in Framework B with same coverage252```253254## Integration Points255256### CI/CD Integration257- Parse coverage reports from CI artifacts258- Generate coverage badges and reports259- Fail builds on coverage thresholds260- Track coverage trends over time261262### IDE Integration263- Generate tests for selected code264- Run coverage analysis on save265- Highlight untested code paths266- Quick-fix suggestions for test gaps267268### Code Review269- Validate test coverage in PRs270- Check test quality standards271- Identify missing test scenarios272- Suggest improvements before merge273274## Version Support275276- **Node.js**: 16+ (Jest 29+, Vitest 0.34+)277- **Python**: 3.8+ (Pytest 7+)278- **Java**: 11+ (JUnit 5.9+)279- **TypeScript**: 4.5+280281## Related Skills282283This skill works well with:284- **code-review**: Validate test quality during reviews285- **refactoring-assistant**: Maintain tests during refactoring286- **ci-cd-helper**: Integrate coverage in pipelines287- **documentation-generator**: Generate test documentation288289---290> Converted and distributed by [TomeVault](https://tomevault.io/claim/alirezarezvani) — claim your Tome and manage your conversions.291<!-- tomevault:4.0:skill_md:2026-04-11 -->