From 6c4d3c203ab87d4d4cc3b86bf4e55c40b18cff96 Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Sat, 17 Apr 2021 14:48:01 -0700 Subject: Update versions and fix hilt --- .../androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt | 1 - .../androidTest/kotlin/ca/allanwang/kau/sample/SampleTestApp.kt | 4 ++-- .../kotlin/ca/allanwang/kau/sample/test/TestModules.kt | 9 ++++++--- 3 files changed, 8 insertions(+), 6 deletions(-) (limited to 'sample/src/androidTest') diff --git a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt index cc45b4e..9f01163 100644 --- a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt +++ b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt @@ -50,7 +50,6 @@ import org.junit.runner.RunWith */ @RunWith(AndroidJUnit4::class) @HiltAndroidTest -@UninstallModules(PrefFactoryModule::class) class KPrefViewTest : BaseTest() { val activity: ActivityTestRule = ActivityTestRule(MainActivity::class.java) diff --git a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/SampleTestApp.kt b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/SampleTestApp.kt index 89e74c7..f6ffdb1 100644 --- a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/SampleTestApp.kt +++ b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/SampleTestApp.kt @@ -22,8 +22,8 @@ import androidx.test.runner.AndroidJUnitRunner import dagger.hilt.EntryPoint import dagger.hilt.InstallIn import dagger.hilt.android.EntryPointAccessors -import dagger.hilt.android.components.ApplicationComponent import dagger.hilt.android.testing.HiltTestApplication +import dagger.hilt.components.SingletonComponent import org.junit.rules.TestRule import org.junit.runner.Description import org.junit.runners.model.Statement @@ -41,7 +41,7 @@ class SampleTestRunner : AndroidJUnitRunner() { class SampleTestRule : TestRule { @EntryPoint - @InstallIn(ApplicationComponent::class) + @InstallIn(SingletonComponent::class) interface SampleTestRuleEntryPoint { fun pref(): KPrefSample } diff --git a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/test/TestModules.kt b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/test/TestModules.kt index 74da014..1615d2f 100644 --- a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/test/TestModules.kt +++ b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/test/TestModules.kt @@ -17,13 +17,16 @@ package ca.allanwang.kau.sample.test import ca.allanwang.kau.kpref.KPrefFactory import ca.allanwang.kau.kpref.KPrefFactoryInMemory +import ca.allanwang.kau.sample.PrefFactoryModule import dagger.Module import dagger.Provides -import dagger.hilt.InstallIn -import dagger.hilt.android.components.ApplicationComponent +import dagger.hilt.components.SingletonComponent +import dagger.hilt.testing.TestInstallIn @Module -@InstallIn(ApplicationComponent::class) +@TestInstallIn( + components = [SingletonComponent::class], + replaces = [PrefFactoryModule::class]) object PrefFactoryTestModule { @Provides fun factory(): KPrefFactory = KPrefFactoryInMemory -- cgit v1.2.3