Browse Source

add junit-vintage-engine + remove duplicated junit dependency

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
Marcel Hibbe 9 months ago
parent
commit
22182d211d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/build.gradle

+ 1 - 1
app/build.gradle

@@ -359,12 +359,12 @@ dependencies {
     kapt "com.google.dagger:hilt-android-compiler:$hilt_version"
 
     implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.8.5")
-    testImplementation("junit:junit:4.13.2")
     androidTestImplementation(platform("androidx.compose:compose-bom:2024.09.00"))
     androidTestImplementation("androidx.compose.ui:ui-test-junit4")
     testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
     testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutines_version"
 
+    testImplementation 'org.junit.vintage:junit-vintage-engine:5.10.0'
 }
 
 tasks.register('installGitHooks', Copy) {