在带有协程的测试中使用的TestScope高级示例

The TestScope advanced example of usage in tests with coroutines(在带有协程的测试中使用的TestScope高级示例)
本文介绍了在带有协程的测试中使用的TestScope高级示例的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

谁能提供在使用协程进行测试时使用新TestScopeTestScope.launch的高级示例吗? 似乎在新的kotlinx.coroutines.test版本中,他们在库中添加了一些名为TestScope的内容。此外,他们已经弃用了旧的TestCoroutineDispatcher,并被告知使用TestScope.runTests,然而,他们并没有添加太多关于如何使用它的文档。我能找到的所有内容都是this。

有人能为我提供一些不同场景下的额外用法示例吗?

推荐答案

我也可以用评论中提到的@joffrey解决这个问题。 您只需要使用runTest { }在测试代码中使用协程作用域。通过使用runTest { },您可以在this中使用TestScope

在我的例子中,在viewModel中有一个流函数,如下所示。它在viewModelScope中运行。

    fun getFriendDataWithFlow() {
        viewModelScope.launch {
            repository.loadFriendsWithFlow()
            ...
        }
     }

我应该在我的测试代码中测试它,我是这样使用它的。

   @ExperimentalCoroutinesApi
   @Before
   fun setup() {
       Dispatchers.setMain(StandardTestDispatcher())
   }

   @ExperimentalCoroutinesApi
   @Test
   fun temp() {
        runTest {
            viewModel.getFriendDataWithFlow()
        }
   }
我所做的只是添加runTest { }块,并在块内添加协程代码。这对我很管用。 我的测试协程依赖项"org.jetbrains.kotlinx:kotlinx-coroutines-test:1.6.0-RC"

这篇关于在带有协程的测试中使用的TestScope高级示例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)