aboutsummaryrefslogtreecommitdiff
path: root/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/SampleTestApp.kt
diff options
context:
space:
mode:
Diffstat (limited to 'sample/src/androidTest/kotlin/ca/allanwang/kau/sample/SampleTestApp.kt')
-rw-r--r--sample/src/androidTest/kotlin/ca/allanwang/kau/sample/SampleTestApp.kt13
1 files changed, 13 insertions, 0 deletions
diff --git a/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/SampleTestApp.kt b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/SampleTestApp.kt
new file mode 100644
index 0000000..4b0c4a7
--- /dev/null
+++ b/sample/src/androidTest/kotlin/ca/allanwang/kau/sample/SampleTestApp.kt
@@ -0,0 +1,13 @@
+package ca.allanwang.kau.sample
+
+import ca.allanwang.kau.kpref.KPrefFactory
+import ca.allanwang.kau.kpref.KPrefFactoryInMemory
+import org.koin.dsl.module
+
+object SampleTestApp {
+ fun prefFactoryModule() = module {
+ single<KPrefFactory> {
+ KPrefFactoryInMemory
+ }
+ }
+} \ No newline at end of file