liverm0r
03/17/2021, 12:50 PM"some test" {
runBlockingTest { .. }
}
sam
03/17/2021, 1:32 PMliverm0r
03/17/2021, 1:41 PMpublic interface DelayController {
public fun advanceTimeBy(delayTimeMillis: Long): Long
}
that helps in testing
delay()
sam
03/17/2021, 1:41 PMliverm0r
03/17/2021, 3:37 PMsuspend TestCoroutineScope.() -> Unit
which is under DelayController
interface TestCoroutineScope: CoroutineScope, UncaughtExceptionCaptor, DelayController ...
sam
03/17/2021, 3:41 PM