1 package kotlinx.coroutines 2 3 class DefaultDispatcherConcurrencyTest : AbstractDispatcherConcurrencyTest() { 4 override val dispatcher: CoroutineDispatcher = Dispatchers.Default 5 } 6 7 class IoDispatcherConcurrencyTest : AbstractDispatcherConcurrencyTest() { 8 override val dispatcher: CoroutineDispatcher = Dispatchers.IO 9 } 10