diff options
author | Allan Wang <me@allanwang.ca> | 2020-06-27 14:36:40 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2020-06-27 14:36:40 -0700 |
commit | 3f28748f959dedb6f7baee7c1c27e343080e8c3f (patch) | |
tree | 97681a6ff6f1c07bf75e55219984d3236af3f892 /sample/src/androidTest/kotlin | |
parent | cd24bc8175938ff289c48a6ec3bb956cc22fb79e (diff) | |
download | kau-3f28748f959dedb6f7baee7c1c27e343080e8c3f.tar.gz kau-3f28748f959dedb6f7baee7c1c27e343080e8c3f.tar.bz2 kau-3f28748f959dedb6f7baee7c1c27e343080e8c3f.zip |
Update AS and add hilt version info
Diffstat (limited to 'sample/src/androidTest/kotlin')
-rw-r--r-- | sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt | 1 | ||||
-rw-r--r-- | sample/src/androidTest/kotlin/ca/allanwang/kau/sample/test/BaseTest.kt (renamed from sample/src/androidTest/kotlin/ca/allanwang/kau/sample/BaseTest.kt) | 2 | ||||
-rw-r--r-- | sample/src/androidTest/kotlin/ca/allanwang/kau/sample/test/TestModules.kt (renamed from sample/src/androidTest/kotlin/ca/allanwang/kau/sample/TestModules.kt) | 2 |
3 files changed, 3 insertions, 2 deletions
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 a8475b3..bfdcfff 100644 --- a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt +++ b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/KPrefViewTest.kt @@ -26,6 +26,7 @@ import androidx.test.espresso.matcher.ViewMatchers.withChild import androidx.test.espresso.matcher.ViewMatchers.withText import androidx.test.ext.junit.runners.AndroidJUnit4 import androidx.test.rule.ActivityTestRule +import ca.allanwang.kau.sample.test.BaseTest import dagger.hilt.android.testing.HiltAndroidTest import dagger.hilt.android.testing.UninstallModules import kotlin.test.assertFalse diff --git a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/BaseTest.kt b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/test/BaseTest.kt index 0f19b05..c3a17ea 100644 --- a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/BaseTest.kt +++ b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/test/BaseTest.kt @@ -1,4 +1,4 @@ -package ca.allanwang.kau.sample +package ca.allanwang.kau.sample.test import dagger.hilt.android.testing.HiltAndroidRule import org.junit.Rule diff --git a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/TestModules.kt b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/test/TestModules.kt index 061af50..4e49810 100644 --- a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/TestModules.kt +++ b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/test/TestModules.kt @@ -1,4 +1,4 @@ -package ca.allanwang.kau.sample +package ca.allanwang.kau.sample.test import ca.allanwang.kau.kpref.KPrefFactory import ca.allanwang.kau.kpref.KPrefFactoryInMemory |