mobile-testing
Installation
SKILL.md
Mobile Testing Patterns
Test Dependencies
// build.gradle.kts
dependencies {
testImplementation(platform("org.junit:junit-bom:6.1.3")) // JUnit 6 / Jupiter 6 — requires Java 17+
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher") // mandatory since Gradle 9
testImplementation("io.mockk:mockk:1.14.11")
testImplementation("app.cash.turbine:turbine:1.2.1")
testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.11.0")
testImplementation("io.kotest:kotest-assertions-core:6.2.4")
androidTestImplementation(platform("androidx.compose:compose-bom:2026.08.00"))
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
debugImplementation("androidx.compose.ui:ui-test-manifest")
}