• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package kotlinx.coroutines.test
2 
3 import kotlinx.coroutines.*
4 import kotlinx.coroutines.internal.*
5 import kotlin.coroutines.*
6 
7 @Suppress("ACTUAL_WITHOUT_EXPECT")
8 public actual typealias TestResult = Unit
9 
systemPropertyImplnull10 internal actual fun systemPropertyImpl(name: String): String? = null
11 
12 internal actual fun createTestResult(testProcedure: suspend CoroutineScope.() -> Unit) =
13     runTestCoroutine(EmptyCoroutineContext, testProcedure)
14 
15 internal actual fun dumpCoroutines() { }