Skip to content

Commit

Permalink
build: robolectric testImplementation 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
murjune committed Dec 1, 2024
1 parent e324388 commit 13186ca
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ dependencies {
implementation(libs.glide)
kapt(libs.glide.compiler)
implementation(libs.splash.screen)
implementation(libs.balloon)
// google & firebase
implementation(platform(libs.firebase.bom))
implementation(libs.firebase.crashlytics.buildtools)
Expand All @@ -170,14 +171,15 @@ dependencies {
implementation(platform(libs.koin.bom))
implementation(libs.koin.android)
androidTestImplementation(libs.koin.android.test)
// unit test
testRuntimeOnly(libs.junit.vintage.engine)
// robolectric test
testImplementation(libs.robolectric)
testImplementation(libs.bundles.android.test)
// android test
androidTestImplementation(libs.bundles.android.test)
debugImplementation(libs.bundles.android.test)
testRuntimeOnly(libs.junit.vintage.engine)
testImplementation(libs.bundles.robolectric.test)
androidTestRuntimeOnly(libs.junit5.android.test.runner)
testImplementation(libs.android.test.fragment)
debugImplementation(libs.android.test.fragment.manifest)

implementation(libs.balloon)
}

0 comments on commit 13186ca

Please sign in to comment.