Home
last modified time | relevance | path

Searched refs:tryGetCompletionCause (Results 1 – 3 of 3) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-test/common/src/
DTestBuilders.kt337 … val completionCause = if (scope.isCancelled) scope.tryGetCompletionCause() else null in runTest()
396 …oroutineLegacy(it, dispatchTimeoutMs.milliseconds, TestScopeImpl::tryGetCompletionCause, testBody)… in runTest()
440 tryGetCompletionCause: T.() -> Throwable?, in runTestCoroutineLegacy()
505 throw handleTimeout(coroutine, dispatchTimeout, tryGetCompletionCause, cleanup) in runTestCoroutineLegacy()
530 tryGetCompletionCause: T.() -> Throwable?, in handleTimeout()
540 val completionCause = if (coroutine.isCancelled) coroutine.tryGetCompletionCause() else null in handleTimeout()
DTestScope.kt304 fun tryGetCompletionCause(): Throwable? = completionCause in tryGetCompletionCause() method
/external/kotlinx.coroutines/kotlinx-coroutines-test/jvm/src/migration/
DTestBuildersDeprecated.kt177 TestBodyCoroutine::tryGetCompletionCause, in runBlockingTest()
229 fun tryGetCompletionCause(): Throwable? = completionCause in runTest() method