All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nativeMain.TestBuilders.kt Maven / Gradle / Ivy

There is a newer version: 1.9.0
Show newest version
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() { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy