2023-10-19 21:18:14 +02:00
|
|
|
plugins {
|
|
|
|
id("com.android.library")
|
|
|
|
id("kotlin-android")
|
|
|
|
id("android-module-dependencies")
|
2023-10-21 20:33:03 +02:00
|
|
|
id("test-module-dependencies")
|
2023-10-20 10:49:54 +02:00
|
|
|
id("jacoco-module-dependencies")
|
2023-10-19 21:18:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "app.aaps.shared.tests"
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":database:entities"))
|
|
|
|
implementation(project(":shared:impl"))
|
|
|
|
implementation(project(":core:interfaces"))
|
|
|
|
implementation(project(":core:main"))
|
|
|
|
implementation(project(":core:utils"))
|
|
|
|
implementation(project(":implementation"))
|
|
|
|
|
|
|
|
|
|
|
|
api(Libs.Mockito.jupiter)
|
|
|
|
api(Libs.Mockito.kotlin)
|
|
|
|
api(Libs.JUnit.jupiterApi)
|
|
|
|
|
|
|
|
//api "com.google.dagger:dagger:$dagger_version"
|
|
|
|
//api "com.google.dagger:dagger-android:$dagger_version"
|
|
|
|
//api "com.google.dagger:dagger-android-support:$dagger_version"
|
|
|
|
}
|