gpt4 book ai didi

android - 未解析的引用 :test in KoinTest

转载 作者:行者123 更新时间:2023-12-02 15:31:19 25 4
gpt4 key购买 nike

我正在尝试使用 Koin 进行一些测试,但是我收到了“未解析的引用:KoinTest”,但是似乎正确执行了导入,因为我在代码中看不到任何错误。只是当我尝试运行测试时。

我尝试清理并重建项目并重新初始化 android studio,但问题仍然存在

测试类

 import org.junit.After
import org.junit.Before
import org.junit.Test
import org.koin.core.context.startKoin
import org.koin.core.context.stopKoin
import org.koin.test.KoinTest
import salva.perez.cabify.di.applicationModule
import org.koin.test.inject
class VoucherPresenterTest : KoinTest {

private val presenter: VoucherContract.Presenter by inject()


@Before
fun before() {
startKoin {
modules(applicationModule)
}
}

@After
fun after() {
stopKoin()
}

@Test
fun testInitViewCorrectly() {
...
}
}

GRADLE

    implementation 'org.koin:koin-android:2.0.1'
testImplementation 'org.koin:koin-test:2.0.1'

最佳答案

考虑使用androidTestImplementation如果你想在你的 androidTest 中使用它和debugImplementation如果你想在unitTest中使用它也是如此。

关于android - 未解析的引用 :test in KoinTest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56577616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com