作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 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/
我正在尝试使用 Koin 进行一些测试,但是我收到了“未解析的引用:KoinTest”,但是似乎正确执行了导入,因为我在代码中看不到任何错误。只是当我尝试运行测试时。 我尝试清理并重建项目并重新初始化
我在我的一项测试中使用“withTestAppliction”来测试路由是否有效。在所有测试之前,DB-Table“cats”应该没有条目。为了获得 DAO,我在此测试中需要 Koin,但如果与“wi
我是一名优秀的程序员,十分优秀!