Smart Kotlin unit testing with auto-detection, coverage analysis, and AI edge cases. Use when generating tests for biz/ layer classes, analyzing test coverage gaps, or discovering edge cases.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Smart Kotlin unit testing with auto-detection, coverage analysis, and AI edge cases. Use when generating tests for biz/ layer classes, analyzing test coverage gaps, or discovering edge cases.
Kotlin Unit Test
Project-specific skill for intelligent Kotlin unit testing.
When to Use
Generating tests for business logic classes (biz/ layer)
Analyzing test coverage gaps
Discovering edge cases for existing code
Before writing new tests to understand what's missing
Workflow
Analyze class: python scripts/analyze_kotlin.py units <file.kt>
Write tests: Follow patterns in references/test-patterns.md
Script Commands
# Analyze single file - extract testable units
python scripts/analyze_kotlin.py units app/src/main/.../SomeClass.kt
# Analyze coverage gaps between source and test directories
python scripts/analyze_kotlin.py coverage app/src/main/java/.../biz app/src/test/java/.../biz