Skip to content

Instantly share code, notes, and snippets.

@zsmb13
Last active June 29, 2022 12:11
Show Gist options
  • Save zsmb13/e353ba133a5d775bd836bcffc264203c to your computer and use it in GitHub Desktop.
Save zsmb13/e353ba133a5d775bd836bcffc264203c to your computer and use it in GitHub Desktop.
Migrating to the new coroutines 1.6 test APIs
// Copyright 2022 Google LLC.
// SPDX-License-Identifier: Apache-2.0
@Test
-fun test() {
- coroutineRule.runBlockingTest {
- // Test coroutine things
- }
-}
+fun test() = runTest {
+ // Test coroutine things
+}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment