diff --git a/kotlinx-coroutines-test/common/src/TestDispatcher.kt b/kotlinx-coroutines-test/common/src/TestDispatcher.kt index 3b756b19e9..f434572663 100644 --- a/kotlinx-coroutines-test/common/src/TestDispatcher.kt +++ b/kotlinx-coroutines-test/common/src/TestDispatcher.kt @@ -10,6 +10,11 @@ import kotlin.jvm.* /** * A test dispatcher that can interface with a [TestCoroutineScheduler]. + * + * The available implementations are: + * * [StandardTestDispatcher] is a dispatcher that places new tasks into a queue. + * * [UnconfinedTestDispatcher] is a dispatcher that behaves like [Dispatchers.Unconfined] while allowing to control + * the virtual time. */ @ExperimentalCoroutinesApi public abstract class TestDispatcher internal constructor(): CoroutineDispatcher(), Delay {