Introduce instrumentation tests

This commit is contained in:
topjohnwu
2024-12-13 01:09:52 -08:00
committed by John Wu
parent 24615afda1
commit 9112a3a4f5
15 changed files with 190 additions and 104 deletions

24
app/test/build.gradle.kts Normal file
View File

@@ -0,0 +1,24 @@
plugins {
id("com.android.application")
kotlin("android")
}
android {
namespace = "com.topjohnwu.magisk.test"
defaultConfig {
applicationId = "com.topjohnwu.magisk.test"
versionCode = 1
versionName = "1.0"
}
}
setupAppCommon()
dependencies {
compileOnly(project(":app:core"))
implementation(libs.test.runner)
implementation(libs.test.rules)
implementation(libs.test.junit)
}