mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-12-12 23:13:08 +00:00
Introduce instrumentation tests
This commit is contained in:
24
app/test/build.gradle.kts
Normal file
24
app/test/build.gradle.kts
Normal 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)
|
||||
}
|
||||
Reference in New Issue
Block a user