1 /* 2 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 package kotlinx.coroutines 5 6 class DefaultDispatcherConcurrencyTest : AbstractDispatcherConcurrencyTest() { 7 override val dispatcher: CoroutineDispatcher = Dispatchers.Default 8 } 9 10 class IoDispatcherConcurrencyTest : AbstractDispatcherConcurrencyTest() { 11 override val dispatcher: CoroutineDispatcher = Dispatchers.IO 12 } 13