nativeMain.TestBuilders.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlinx-coroutines-test
Show all versions of kotlinx-coroutines-test
Coroutines support libraries for Kotlin
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()
}
}
internal actual fun systemPropertyImpl(name: String): String? = null
internal actual fun dumpCoroutines() { }