Home
last modified time | relevance | path

Searched refs:TestScopeImpl (Results 1 – 2 of 2) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-test/common/src/
DTestScope.kt169 var scope: TestScopeImpl? = null in advanceUntilIdle()
180 return TestScopeImpl(ctxWithDispatcher + exceptionHandler).also { scope = it } in advanceUntilIdle()
207 internal class TestScopeImpl(context: CoroutineContext) : class
312 internal fun TestScope.asSpecificImplementation(): TestScopeImpl = when (this) { in tryGetCompletionCause()
313 is TestScopeImpl -> this in tryGetCompletionCause()
DTestBuilders.kt396 …runTestCoroutineLegacy(it, dispatchTimeoutMs.milliseconds, TestScopeImpl::tryGetCompletionCause, t… in runTest()