Code coverage measures how much of your code is tested. This skill provides strategies for meaningful coverage measurement and improving test quality.
Use when measuring test coverage with "measure coverage", "track coverage", "identify untested code", or "set coverage thresholds".
Do NOT use for writing tests (use layer-specific testing skills), pytest configuration (use pytest-configuration), or fixing low coverage (identify gaps first, then use appropriate testing skill).
테스트 커버리지 측정 및 추적: 레이어별 커버리지 임계값, 커버리지 보고(HTML/터미널), 커버리지 격차 식별, 지점 커버리지 대 회선 커버리지, 커버리지 기반 테스트. 계층별 대상(도메인 95%, 애플리케이션 85%, 어댑터 75%)을 포함합니다. 사용 시기: 테스트 적용 범위 측정, 적용 범위 임계값 설정, 테스트되지 않은 코드 경로 식별, 적용 범위 개선 추적, 코드 품질 게이트 보장. 출처: dawiddutoit/custom-claude.