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