Agent Skills: Testing Standards

>

UncategorizedID: bitsoex/bitso-java/testing-standards

Install this agent skill to your local

pnpm dlx add-skill https://github.com/bitsoex/bitso-java/tree/HEAD/.claude/skills/testing-standards

Skill Files

Browse the full folder contents for testing-standards.

Download Skill

Loading file tree…

.claude/skills/testing-standards/SKILL.md

Skill Metadata

Name
testing-standards
Description
>

Testing Standards

Validate test coverage and generate missing tests.

When to use this skill

  • After implementing new features
  • When refactoring existing code
  • To identify gaps in test coverage
  • During test quality improvements
  • When asked to "add tests" or "improve coverage"

Skill Contents

Available Resources

πŸ“š references/ - Detailed documentation


Quick Start

  1. Run coverage report for your technology:
    • JavaScript/TypeScript: pnpm run test:coverage
    • Python: pytest --cov=. --cov-report=html
    • Java: ./gradlew jacocoTestReport
    • Go: go test -cover ./...
  2. Review uncovered files and functions
  3. Apply patterns from the references:
    • references/test-patterns.md - General test patterns
    • references/{technology}/test-patterns.md - Technology-specific patterns
  4. Write tests for uncovered code paths
  5. Re-run coverage to verify improvement

Coverage Targets

| Type | Target | |------|--------| | Line coverage | 80%+ | | Branch coverage | 70%+ | | Critical paths | 100% |

Coverage Tools

| Technology | Tool | |------------|------| | Java | JaCoCo | | JavaScript/TypeScript | Jest, NYC | | Python | coverage.py, pytest-cov | | Go | go test -cover |

References

| Technology | Reference | |------------|-----------| | Java | references/java/test-patterns.md | | TypeScript | references/typescript/test-patterns.md | | Python | references/python/test-patterns.md | | Go | references/go/test-patterns.md |

Related Skills

<!-- AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY --> <!-- Source: bitsoex/ai-code-instructions β†’ global/skills/testing-standards/SKILL.md --> <!-- To modify, edit the source file and run the distribution workflow -->