From a76da935cdb43e0f99513ed6f3468bd0835a5137 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Fri, 12 May 2023 18:06:47 +0530 Subject: feat: remove unnecessary CoroutineTestRule --- .../app/passwordstore/test/CoroutineTestRule.kt | 48 ---------------------- 1 file changed, 48 deletions(-) delete mode 100644 coroutine-utils-testing/src/main/kotlin/app/passwordstore/test/CoroutineTestRule.kt (limited to 'coroutine-utils-testing/src') 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() - } -} -- cgit v1.2.3