All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nativeMain.internal.TestMainDispatcher.kt Maven / Gradle / Ivy

The newest version!
package kotlinx.coroutines.test.internal
import kotlinx.coroutines.*

@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE") // do not remove the INVISIBLE_REFERENCE suppression: required in K2
internal actual fun Dispatchers.getTestMainDispatcher(): TestMainDispatcher =
    when (val mainDispatcher = Main) {
        is TestMainDispatcher -> mainDispatcher
        else -> TestMainDispatcher(mainDispatcher).also { injectMain(it) }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy