gpt4 book ai didi

使用 TestCoroutineDispatcher(已弃用)替代方案对 Kotlin 协程进行 Android 测试

转载 作者:行者123 更新时间:2023-12-04 23:58:37 24 4
gpt4 key购买 nike

我正在调查我的 Android 应用程序中的协程测试并遵循此代码实验室 Advanced Android in Kotlin 05.3: Testing Coroutines and Jetpack integrations此 codelab 包含以下代码 fragment

@ExperimentalCoroutinesApi
val testDispatcher: TestCoroutineDispatcher = TestCoroutineDispatcher()

@ExperimentalCoroutinesApi
@Before
fun setupDispatcher() {
Dispatchers.setMain(testDispatcher)
}

@ExperimentalCoroutinesApi
@After
fun tearDownDispatcher() {
Dispatchers.resetMain()
testDispatcher.cleanupTestCoroutines()
}
但是 TestCoroutineDispatcher 被标记为已弃用,并带有以下注释:-
/**
* [CoroutineDispatcher] that performs both immediate and lazy execution of coroutines in tests
* and uses a [TestCoroutineScheduler] to control its virtual clock.
*
* By default, [TestCoroutineDispatcher] is immediate. That means any tasks scheduled to be run without delay are
* immediately executed. If they were scheduled with a delay, the virtual clock-time must be advanced via one of the
* methods on the dispatcher's [scheduler].
*
* When switched to lazy execution using [pauseDispatcher] any coroutines started via [launch] or [async] will
* not execute until a call to [DelayController.runCurrent] or the virtual clock-time has been advanced via one of the
* methods on [DelayController].
*
* @see DelayController
*/
@Deprecated("The execution order of `TestCoroutineDispatcher` can be confusing, and the mechanism of " +
"pausing is typically misunderstood. Please use `StandardTestDispatcher` or `UnconfinedTestDispatcher` instead.",
level = DeprecationLevel.WARNING)
// Since 1.6.0, ERROR in 1.7.0 and removed as experimental in 1.8.0
public class TestCoroutineDispatcher(public override val scheduler: TestCoroutineScheduler = TestCoroutineScheduler()):
TestDispatcher(), Delay, SchedulerAsDelayController
{...}
不清楚我应该如何使用 TestCoroutineDispatcher() 的建议替代品。是 StandardTestDispatcherUnconfinedTestDispatcher TestCoroutineDispatcher() 的直接替代品?
我错过了什么?

最佳答案

似乎可以使用更优雅的解决方案,如 runTest()自从 1.6.0取自此 SO answer
documentation有关如何使用该模块的详细信息。

关于使用 TestCoroutineDispatcher(已弃用)替代方案对 Kotlin 协程进行 Android 测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71464816/

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