![JAR search and dependency download from the Maven repository](/logo.png)
nativeMain.internal.TestMainDispatcher.kt Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy