What problem does it solve? Test suites often pass while verifying very little: tests with no assertions, only trivial null checks, or the same equality assertion repeated everywhere give false confidence. This Skill audits assertion quality so you can see whether tests actually verify behavior, exceptions, state changes, and structure. ## Core Features & Use Cases - Assertion Classification: Classifies every assertion into 12 language-neutral categories (equality, exception, negative, state/side-effect, structural/deep, and more) across .NET, Python, TS/JS, Java, Go, Ruby, Rust, Swift, Kotlin, PowerShell, and C++. - Diversity Metrics: Computes per-test and suite-wide metrics such as average assertions per test, assertion type spread, zero-assertion tests, trivial-only tests, and self-referential/tautological assertions. - Calibrated Findings: Applies calibration rules so exception tests, meaningful boolean checks, mock verifications, and snapshot tests are not misflagged, then produces a summary dashboard, gap analysis, and prioritized recommendations. - Use Case: Point it at a freshly generated MSTest or pytest suite to find assertion-free tests and shallow tests before merging, or use it as a self-review step after AI test generation. ## Quick Start Analyze the assertion quality of the tests in my test project and report which tests are assertion-free, trivial, or lacking diversity.