作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法弄清楚如何测试带有SharedFlow
的replay=0
发出的值。
import kotlinx.coroutines.flow.MutableSharedFlow
import kotlinx.coroutines.runBlocking
import org.junit.Test
class ShowcaseTest {
@Test
fun testIntSharedFlowFlow() {
val intSharedFlow = MutableSharedFlow<Int>()
runBlocking {
intSharedFlow.emit(1)
}
// Does not work as there is no buffer because MutableSharedFlow(replay=0)
assert(intSharedFlow.replayCache.first() == 1)
}
}
最佳答案
您可以改用tryEmit()并验证返回的结果
更新:
考虑使用Turbine
例如:
sharedFlow.test {
sharedFlow.emit(1)
assertEquals(expected = 1, expectItem())
cancelAndIgnoreRemainingEvents()
}
关于kotlin-coroutines - 如何对MutableSharedFlow <T>(replay = 0)发出值进行单元测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65235632/
我是一名优秀的程序员,十分优秀!