TestCoroutineScope
Deprecated
This constructs a `TestCoroutineScope` with a deprecated `CoroutineDispatcher` by default. Please use `createTestCoroutineScope` instead.
Replace with
import kotlin.coroutines.EmptyCoroutineContext
Content copied to clipboard
createTestCoroutineScope(TestCoroutineDispatcher() + TestCoroutineExceptionHandler() + context)
Content copied to clipboard
A coroutine scope for launching test coroutines using TestCoroutineDispatcher.
createTestCoroutineScope is a similar function that defaults to StandardTestDispatcher.