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

@ -53,7 +53,11 @@ dependencies {
// endregion
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)
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}

View file

@ -12,8 +12,8 @@ import com.tangem.datasource.local.config.providers.models.ProviderModel
import com.tangem.utils.coroutines.TestingCoroutineDispatcherProvider
import io.mockk.*
import kotlinx.coroutines.test.runTest
import org.junit.Before
import org.junit.Test
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Test
/**
[REDACTED_AUTHOR]
@ -35,7 +35,7 @@ internal class BlockchainProvidersResponseLoaderTest {
dispatchers = TestingCoroutineDispatcherProvider(),
)
@Before
@BeforeEach
fun setup() {
mockkStatic(FirebaseCrashlytics::class)
val firebaseCrashlytics = mockk<FirebaseCrashlytics>()

View file

@ -8,8 +8,8 @@ import com.tangem.core.analytics.api.AnalyticsExceptionHandler
import com.tangem.core.analytics.models.ExceptionAnalyticsEvent
import com.tangem.datasource.local.config.providers.models.ProviderModel
import io.mockk.*
import org.junit.Before
import org.junit.Test
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Test
/**
[REDACTED_AUTHOR]
@ -24,7 +24,7 @@ internal class BlockchainProvidersResponseMergerTest {
},
)
@Before
@BeforeEach
fun setup() {
mockkStatic(FirebaseCrashlytics::class)
val firebaseCrashlytics = mockk<FirebaseCrashlytics>()