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

@ -37,8 +37,13 @@ dependencies {
/* 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.turbine)
testImplementation(deps.test.truth)
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}

View file

@ -8,7 +8,7 @@ import com.domain.blockaid.models.transaction.simultation.ApproveInfo
import com.domain.blockaid.models.transaction.simultation.SimulationData
import com.google.common.truth.Truth
import com.tangem.datasource.api.common.blockaid.models.response.*
import org.junit.Test
import org.junit.jupiter.api.Test
import java.math.BigDecimal
class BlockAidMapperTest {

View file

@ -17,8 +17,8 @@ import com.tangem.utils.coroutines.TestingCoroutineDispatcherProvider
import io.mockk.*
import io.mockk.impl.annotations.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
class DefaultBlockAidRepositoryTest {
@ -32,7 +32,7 @@ class DefaultBlockAidRepositoryTest {
private val dispatchers = TestingCoroutineDispatcherProvider()
@Before
@BeforeEach
fun setup() {
MockKAnnotations.init(this)
repository = DefaultBlockAidRepository(api, dispatchers, mapper)