1 /* 2 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 5 package kotlinx.coroutines.test 6 import kotlinx.coroutines.* 7 import kotlin.native.concurrent.* 8 9 @Suppress("ACTUAL_WITHOUT_EXPECT") 10 public actual typealias TestResult = Unit 11 createTestResultnull12internal actual fun createTestResult(testProcedure: suspend CoroutineScope.() -> Unit) { 13 runBlocking { 14 testProcedure() 15 } 16 } 17 dumpCoroutinesnull18internal actual fun dumpCoroutines() { } 19