Hec*_*tor 13 android unit-testing kotlin-coroutines
我正在研究 Android 应用程序中的协程测试并遵循此代码实验室Advanced Android in Kotlin 05.3: Testing Coroutines and Jetpack integrations
此 Codelab 包含以下代码片段
@ExperimentalCoroutinesApi
val testDispatcher: TestCoroutineDispatcher = TestCoroutineDispatcher()
@ExperimentalCoroutinesApi
@Before
fun setupDispatcher() {
Dispatchers.setMain(testDispatcher)
}
@ExperimentalCoroutinesApi
@After
fun tearDownDispatcher() {
Dispatchers.resetMain()
testDispatcher.cleanupTestCoroutines()
}
Run Code Online (Sandbox Code Playgroud)
然而 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
{...}
Run Code Online (Sandbox Code Playgroud)
目前尚不清楚我应该如何使用建议的替代方案来直接TestCoroutineDispatcher()
替换TestCoroutineDispatcher()?StandardTestDispatcher
UnconfinedTestDispatcher
我缺少什么?