Код: Выделить всё
class Some {
internal lateinit var coroutineScope: LifecycleCoroutineScope
...
fun act() {
coroutineScope.launch {
...
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/670 ... -unit-test
Код: Выделить всё
class Some {
internal lateinit var coroutineScope: LifecycleCoroutineScope
...
fun act() {
coroutineScope.launch {
...
}
}
}