package kotlinx.coroutines.test import kotlinx.coroutines.* public actual typealias TestResult = Unit internal actual fun createTestResult(testProcedure: suspend CoroutineScope.() -> Unit) { runBlocking { testProcedure() } } internal actual fun systemPropertyImpl(name: String): String? = null internal actual fun dumpCoroutines() { }