File tree 1 file changed +13
-0
lines changed
app/src/androidTest/kotlin/at/bitfire/davdroid
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,24 @@ import at.bitfire.davdroid.push.PushRegistrationWorkerManager
8
8
import at.bitfire.davdroid.repository.DavCollectionRepository
9
9
import at.bitfire.davdroid.startup.StartupPlugin
10
10
import at.bitfire.davdroid.startup.TasksAppWatcher
11
+ import at.bitfire.davdroid.sync.worker.SyncWorkerManager
11
12
import dagger.Module
12
13
import dagger.hilt.components.SingletonComponent
13
14
import dagger.hilt.testing.TestInstallIn
14
15
import dagger.multibindings.Multibinds
15
16
17
+ // remove SyncWorkerModule from Android tests
18
+ @Module
19
+ @TestInstallIn(
20
+ components = [SingletonComponent ::class ],
21
+ replaces = [SyncWorkerManager .SyncWorkerManagerModule ::class ]
22
+ )
23
+ abstract class TestSyncWorkerManagerModule {
24
+ // provides empty set of listeners
25
+ @Multibinds
26
+ abstract fun empty (): Set <DavCollectionRepository .OnChangeListener >
27
+ }
28
+
16
29
// remove PushRegistrationWorkerModule from Android tests
17
30
@Module
18
31
@TestInstallIn(
You can’t perform that action at this time.
0 commit comments