Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-03 19:57:47 +04:00
parent 3cc0a643e9
commit 642190f7c6
98 changed files with 317 additions and 202 deletions

View file

@ -28,11 +28,17 @@ dependencies {
implementation(deps.arrow.core)
implementation(deps.test.junit)
implementation(deps.test.truth)
testImplementation(projects.test.core)
testImplementation(deps.test.junit5)
testRuntimeOnly(deps.test.junit5.engine)
testImplementation(deps.test.truth)
// region DI
implementation(deps.hilt.android)
kapt(deps.hilt.kapt)
// end
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}