Add tests on VerifySelfSessionView

This commit is contained in:
Benoit Marty 2024-02-21 15:57:14 +01:00 committed by Benoit Marty
parent addc3d4782
commit 89cd8ad33e
3 changed files with 161 additions and 3 deletions

View file

@ -22,6 +22,11 @@ plugins {
android {
namespace = "io.element.android.features.verifysession.impl"
testOptions {
unitTests {
isIncludeAndroidResources = true
}
}
}
anvil {
@ -44,10 +49,13 @@ dependencies {
testImplementation(libs.test.junit)
testImplementation(libs.coroutines.test)
testImplementation(libs.molecule.runtime)
testImplementation(libs.test.robolectric)
testImplementation(libs.test.truth)
testImplementation(libs.test.turbine)
testImplementation(projects.libraries.matrix.test)
testImplementation(projects.tests.testutils)
testImplementation(libs.androidx.compose.ui.test.junit)
testReleaseImplementation(libs.androidx.compose.ui.test.manifest)
ksp(libs.showkase.processor)
}