aboutsummaryrefslogtreecommitdiff
path: root/coroutine-utils-testing/src
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2023-05-12 18:06:47 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2023-05-12 18:06:47 +0530
commita76da935cdb43e0f99513ed6f3468bd0835a5137 (patch)
tree50e9fc59fd09f2de9ac608b8907d87889c083fd2 /coroutine-utils-testing/src
parentb9abf3ef43e3749c79c11254c575a5ad3af0a08f (diff)
feat: remove unnecessary CoroutineTestRule
Diffstat (limited to 'coroutine-utils-testing/src')
-rw-r--r--coroutine-utils-testing/src/main/kotlin/app/passwordstore/test/CoroutineTestRule.kt48
1 files changed, 0 insertions, 48 deletions
diff --git a/coroutine-utils-testing/src/main/kotlin/app/passwordstore/test/CoroutineTestRule.kt b/coroutine-utils-testing/src/main/kotlin/app/passwordstore/test/CoroutineTestRule.kt
deleted file mode 100644
index e5e01ba9..00000000
--- a/coroutine-utils-testing/src/main/kotlin/app/passwordstore/test/CoroutineTestRule.kt
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved.
- * SPDX-License-Identifier: GPL-3.0-only
- */
-
-package app.passwordstore.test
-
-import app.passwordstore.util.coroutines.DispatcherProvider
-import kotlinx.coroutines.CoroutineDispatcher
-import kotlinx.coroutines.Dispatchers
-import kotlinx.coroutines.ExperimentalCoroutinesApi
-import kotlinx.coroutines.test.TestCoroutineScheduler
-import kotlinx.coroutines.test.TestDispatcher
-import kotlinx.coroutines.test.UnconfinedTestDispatcher
-import kotlinx.coroutines.test.resetMain
-import kotlinx.coroutines.test.setMain
-import org.junit.rules.TestWatcher
-import org.junit.runner.Description
-
-/**
- * JUnit [TestWatcher] to correctly handle setting and resetting a given [testDispatcher] for tests.
- */
-@ExperimentalCoroutinesApi
-public class CoroutineTestRule(
- public val testDispatcher: TestDispatcher = UnconfinedTestDispatcher(TestCoroutineScheduler()),
-) : TestWatcher() {
-
- public val testDispatcherProvider: DispatcherProvider =
- object : DispatcherProvider {
- override fun default(): CoroutineDispatcher = testDispatcher
-
- override fun io(): CoroutineDispatcher = testDispatcher
-
- override fun main(): CoroutineDispatcher = testDispatcher
-
- override fun unconfined(): CoroutineDispatcher = testDispatcher
- }
-
- override fun starting(description: Description) {
- super.starting(description)
- Dispatchers.setMain(testDispatcher)
- }
-
- override fun finished(description: Description) {
- super.finished(description)
- Dispatchers.resetMain()
- }
-}