skills/smithery.ai/android-unit-testing

android-unit-testing

Installation
SKILL.md

Scope

  • JVM unit tests (Gradle test*UnitTest) first.
  • Instrumented tests are out of scope unless explicitly requested.

Preconditions

  • Use the repo's Gradle Wrapper (./gradlew).
  • Prefer deterministic commands; avoid “try random flags”.

Step-by-step

1) Discover test tasks

  1. List modules and test tasks:
    • ./gradlew tasks --all | grep -E "test.*UnitTest|:test"
  2. Identify common tasks:
    • :app:testDebugUnitTest
    • testDebugUnitTest (root aggregation if present)
    • flavors: test<Flavor><BuildType>UnitTest
Installs
1
First Seen
Apr 26, 2026
android-unit-testing from smithery.ai