1 import kotlinx.coroutines.CoroutineExceptionHandler; 2 import kotlinx.coroutines.internal.MainDispatcherFactory; 3 import kotlinx.coroutines.test.internal.ExceptionCollectorAsService; 4 import kotlinx.coroutines.test.internal.TestMainDispatcherFactory; 5 6 module kotlinx.coroutines.test { 7 requires kotlin.stdlib; 8 requires kotlinx.coroutines.core; 9 requires kotlinx.atomicfu; 10 11 exports kotlinx.coroutines.test; 12 13 provides MainDispatcherFactory with TestMainDispatcherFactory; 14 provides CoroutineExceptionHandler with ExceptionCollectorAsService; 15 } 16