Updated on 2026-08-14

This commit is contained in:
Tangem 2026-04-16 14:05:53 +01:00
parent ae09293604
commit 0f700c4071
3 changed files with 2266 additions and 7 deletions

View file

@ -10,6 +10,10 @@ android {
namespace = "com.tangem.features.staking.impl"
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
dependencies {
/** AndroidX */
implementation(deps.androidx.fragment.ktx)
@ -88,4 +92,11 @@ dependencies {
/** DI */
implementation(deps.hilt.android)
kapt(deps.hilt.kapt)
/** Test */
testImplementation(deps.test.junit5)
testRuntimeOnly(deps.test.junit5.engine)
testImplementation(deps.test.mockk)
testImplementation(deps.test.truth)
testImplementation(deps.test.coroutine)
}