1 /* 2 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 package kotlinx.coroutines 5 runMtTestnull6expect fun TestBase.runMtTest( 7 expected: ((Throwable) -> Boolean)? = null, 8 unhandled: List<(Throwable) -> Boolean> = emptyList(), 9 block: suspend CoroutineScope.() -> Unit 10 ): TestResult 11