Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-14 15:33:20 +04:00
parent 59117bf97c
commit 1b33e6b02e
5 changed files with 389 additions and 1 deletions

View file

@ -9,6 +9,10 @@ android {
namespace = "com.tangem.data.networks"
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
dependencies {
// region Project - Core
implementation(projects.core.datasource)
@ -52,7 +56,8 @@ dependencies {
// region Tests
testImplementation(deps.test.coroutine)
testImplementation(deps.test.junit)
testImplementation(deps.test.junit5)
testRuntimeOnly(deps.test.junit5.engine)
testImplementation(deps.test.mockk)
testImplementation(deps.test.truth)
testImplementation(projects.common.test)