run-tests
Installation
SKILL.md
Run tests
Test types and modules
Test types (extend as a project needs):
| Type | Meaning | Typical Gradle tasks |
|---|---|---|
unit |
fast tests, no Spring/Docker | test |
integration |
Spring + Testcontainers | testIntgr or integrationTest |
all |
everything | test + testIntgr |
A module is a Gradle subproject; prefix its path onto the task
(:web:test). A module combines with a type on the fly — build that
configuration when first asked and remember it.