blob: 607dec6a734825e558ef564258661614d0154de7 [file] [log] [blame]
/*
* Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package kotlinx.coroutines.test
import kotlinx.coroutines.*
import kotlin.native.concurrent.*
@Suppress("ACTUAL_WITHOUT_EXPECT")
public actual typealias TestResult = Unit
internal actual fun createTestResult(testProcedure: suspend CoroutineScope.() -> Unit) {
runBlocking {
testProcedure()
}
}
internal actual fun dumpCoroutines() { }