From 45999ec61ea301152210481abc17b73e2930d4cd Mon Sep 17 00:00:00 2001 From: Taush Sampley Date: Mon, 11 Mar 2024 00:13:50 -0500 Subject: [PATCH] Remove unused test factory --- .../collections/core/CreateDonationUseCaseUnitTest.kt | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/feature/collections/core/src/jvmTest/kotlin/org/pointyware/painteddogs/feature/collections/core/CreateDonationUseCaseUnitTest.kt b/feature/collections/core/src/jvmTest/kotlin/org/pointyware/painteddogs/feature/collections/core/CreateDonationUseCaseUnitTest.kt index 1e3caf7..848828b 100644 --- a/feature/collections/core/src/jvmTest/kotlin/org/pointyware/painteddogs/feature/collections/core/CreateDonationUseCaseUnitTest.kt +++ b/feature/collections/core/src/jvmTest/kotlin/org/pointyware/painteddogs/feature/collections/core/CreateDonationUseCaseUnitTest.kt @@ -32,16 +32,6 @@ data class DonationParams( } } -interface RepoFactory { - fun createRepo(): CollectionRepository -} - -class TestRepoFactory: RepoFactory { - override fun createRepo(): CollectionRepository { - return TestCollectionRepository() - } -} - /** * */