blob: a9599019190d0ec07332683a2b899749fa748571 [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.*
@Suppress("ACTUAL_WITHOUT_EXPECT")
public actual typealias TestResult = Unit
internal actual fun createTestResult(testProcedure: suspend CoroutineScope.() -> Unit) {
runBlocking {
testProcedure()
}
}