
Testing
- 2 installs
- 5 repo stars
- Updated August 2, 2026
- contentstack/contentstack-android
Use for JVM unit tests, Robolectric, androidx test, and JaCoCo in contentstack-android.
About
Testing for contentstack-android When to use Adding tests under contentstack/src/test/.. Debugging JaCoCo or unit-test-only failures.
- Adding tests under contentstack/src/test/
- Debugging JaCoCo or unit-test-only failures
Testing by the numbers
- 2 all-time installs (skills.sh)
- Ranked #1,693 of 2,153 Testing & QA skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/contentstack/contentstack-android --skill testingAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 5 |
| Last updated | August 2, 2026 |
| Repository | contentstack/contentstack-android ↗ |
What it does
Use for JVM unit tests, Robolectric, androidx test, and JaCoCo in contentstack-android.
Files
Testing – contentstack-android
When to use
- Adding tests under
contentstack/src/test/ - Debugging JaCoCo or unit-test-only failures
Instructions
Unit tests
- Prefer `testDebugUnitTest` for fast feedback; Robolectric enables Android APIs on JVM where configured.
Instrumentation
- `androidTest` exists for on-device tests—run on emulator/CI when changing UI-adjacent or integration paths.
Coverage
- Debug builds enable `testCoverageEnabled`—JaCoCo outputs feed into reporting tasks defined in the module
build.gradle.
Hygiene
- Use `MockWebserver` and fixtures for HTTP; avoid embedding real stack credentials in the repo.
Related skills
Testing & QAtesting