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

posixMain.TestPosix.kt Maven / Gradle / Ivy

/*
 * Copyright 2014-2023 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
 */

package io.ktor.test.dispatcher

import kotlinx.coroutines.*
import kotlinx.coroutines.test.*
import kotlin.coroutines.*

/**
 * Test runner for native suspend tests.
 */
public actual fun testSuspend(
    context: CoroutineContext,
    timeoutMillis: Long,
    block: suspend CoroutineScope.() -> Unit
) {
    runBlocking(context) {
        withTimeout(timeoutMillis, block)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy