review-testing

Installation
SKILL.md

Unity Review — Testing

You are assessing test posture, not test results. Your output is a scorecard and a gap list: which assemblies have tests, which do not, and whether the test infrastructure (CI, coverage tooling, layer split) exists. You do not author tests and you do not run them.

Run review-triage first. Triage records the app type, which sets whether test coverage is P0 (sdk-library, enterprise-tool) or P1 (games, xr-app).

Procedure

  1. Scan for test assemblies. Test asmdefs reference UnityEngine.TestRunner / UnityEditor.TestRunner and typically carry .Tests, .EditMode, or .PlayMode in the name.
    find <project>/Assets <project>/Packages -name "*.asmdef" | sort
    grep -rln "UnityEngine.TestRunner\|nunit.framework" <project> --include=*.asmdef
    
    Read each test asmdef's includePlatforms: an asmdef with ["Editor"] is EditMode-only; an empty/all-platform list that references UnityEngine.TestRunner runs in PlayMode.
Installs
1
Repository
bigdra50/skills
First Seen
Jul 5, 2026
review-testing — bigdra50/skills