Home
last modified time | relevance | path

Searched refs:healthDataExportManager (Results 1 – 12 of 12) sorted by relevance

/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/exportimport/
DExportDestinationFragmentTest.kt119 val healthDataExportManager: HealthDataExportManager = in <lambda>() constant in com.android.healthconnect.controller.tests.exportimport.ExportDestinationFragmentTest
134 .`when`(healthDataExportManager) in <lambda>()
192 .`when`(healthDataExportManager) in <lambda>()
229 .`when`(healthDataExportManager) in <lambda>()
262 .`when`(healthDataExportManager) in <lambda>()
292 .`when`(healthDataExportManager) in <lambda>()
328 .`when`(healthDataExportManager) in <lambda>()
354 .`when`(healthDataExportManager) in <lambda>()
383 .`when`(healthDataExportManager) in <lambda>()
394 Mockito.verify(healthDataExportManager) in <lambda>()
[all …]
DScheduledExportFragmentTest.kt68 val healthDataExportManager: HealthDataExportManager = in <lambda>() constant in com.android.healthconnect.controller.tests.exportimport.ScheduledExportFragmentTest
74 whenever(healthDataExportManager.getScheduledExportPeriodInDays()).then { in <lambda>()
80 .`when`(healthDataExportManager) in <lambda>()
92 .`when`(healthDataExportManager) in <lambda>()
111 .`when`(healthDataExportManager) in <lambda>()
121 whenever(healthDataExportManager.getScheduledExportPeriodInDays()).then { in <lambda>()
131 whenever(healthDataExportManager.getScheduledExportPeriodInDays()).then { in <lambda>()
141 whenever(healthDataExportManager.getScheduledExportPeriodInDays()).then { in <lambda>()
157 Mockito.verify(healthDataExportManager) in <lambda>()
182 Mockito.verify(healthDataExportManager) in <lambda>()
[all …]
DImportSourceLocationFragmentTest.kt116 val healthDataExportManager: HealthDataExportManager = in <lambda>() constant in com.android.healthconnect.controller.tests.exportimport.ImportSourceLocationFragmentTest
131 .`when`(healthDataExportManager) in <lambda>()
181 .`when`(healthDataExportManager) in <lambda>()
218 .`when`(healthDataExportManager) in <lambda>()
251 .`when`(healthDataExportManager) in <lambda>()
281 .`when`(healthDataExportManager) in <lambda>()
317 .`when`(healthDataExportManager) in <lambda>()
343 .`when`(healthDataExportManager) in <lambda>()
372 .`when`(healthDataExportManager) in <lambda>()
402 .`when`(healthDataExportManager) in <lambda>()
[all …]
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/exportimport/api/
DUpdateExportSettingsUseCaseTest.kt40 @BindValue val healthDataExportManager: HealthDataExportManager = FakeHealthDataExportManager() constant in com.android.healthconnect.controller.tests.exportimport.api.UpdateExportSettingsUseCaseTest
46 useCase = UpdateExportSettingsUseCase(healthDataExportManager) in setup()
51 (healthDataExportManager as FakeHealthDataExportManager).reset() in teardown()
63 assertThat(healthDataExportManager.getScheduledExportPeriodInDays()) in <lambda>()
70 (healthDataExportManager as FakeHealthDataExportManager) in <lambda>()
DLoadExportSettingsUseCaseTest.kt39 @BindValue val healthDataExportManager: HealthDataExportManager = FakeHealthDataExportManager() constant in com.android.healthconnect.controller.tests.exportimport.api.LoadExportSettingsUseCaseTest
45 useCase = LoadExportSettingsUseCase(healthDataExportManager) in setup()
50 (healthDataExportManager as FakeHealthDataExportManager).reset() in teardown()
55 healthDataExportManager.configureScheduledExport( in <lambda>()
68 (healthDataExportManager as FakeHealthDataExportManager) in <lambda>()
DQueryDocumentProvidersUseCaseTest.kt64 @BindValue val healthDataExportManager: HealthDataExportManager = FakeHealthDataExportManager() constant in com.android.healthconnect.controller.tests.exportimport.api.QueryDocumentProvidersUseCaseTest
70 useCase = QueryDocumentProvidersUseCase(healthDataExportManager) in setup()
75 (healthDataExportManager as FakeHealthDataExportManager).reset() in teardown()
88 (healthDataExportManager as FakeHealthDataExportManager).setExportImportDocumentProviders( in <lambda>()
131 (healthDataExportManager as FakeHealthDataExportManager).setExportImportDocumentProviders( in <lambda>()
169 (healthDataExportManager as FakeHealthDataExportManager).setQueryDocumentProvidersException( in <lambda>()
DLoadScheduledExportStatusUseCaseTest.kt42 @BindValue val healthDataExportManager: HealthDataExportManager = FakeHealthDataExportManager() constant in com.android.healthconnect.controller.tests.exportimport.api.LoadScheduledExportStatusUseCaseTest
48 useCase = LoadScheduledExportStatusUseCase(healthDataExportManager) in setup()
53 (healthDataExportManager as FakeHealthDataExportManager).reset() in teardown()
61 (healthDataExportManager as FakeHealthDataExportManager).setScheduledExportStatus( in <lambda>()
77 (healthDataExportManager as FakeHealthDataExportManager).setScheduledExportStatusException( in <lambda>()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/service/
DUseCaseModule.kt305 healthDataExportManager: HealthDataExportManager in providesLoadExportSettingsUseCase()
307 return LoadExportSettingsUseCase(healthDataExportManager) in providesLoadExportSettingsUseCase()
312 healthDataExportManager: HealthDataExportManager in providesUpdateExportSettingsUseCase()
314 return UpdateExportSettingsUseCase(healthDataExportManager) in providesUpdateExportSettingsUseCase()
319 healthDataExportManager: HealthDataExportManager in providesLoadScheduledExportStatusUseCase()
321 return LoadScheduledExportStatusUseCase(healthDataExportManager) in providesLoadScheduledExportStatusUseCase()
326 healthDataExportManager: HealthDataExportManager in providesQueryDocumentProvidersUseCase()
328 return QueryDocumentProvidersUseCase(healthDataExportManager) in providesQueryDocumentProvidersUseCase()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/exportimport/api/
DLoadExportSettingsUseCase.kt30 private val healthDataExportManager: HealthDataExportManager, constant in com.android.healthconnect.controller.exportimport.api.LoadExportSettingsUseCase
40 val periodInDays = healthDataExportManager.getScheduledExportPeriodInDays() in invoke()
DUpdateExportSettingsUseCase.kt31 private val healthDataExportManager: HealthDataExportManager, constant in com.android.healthconnect.controller.exportimport.api.UpdateExportSettingsUseCase
43 healthDataExportManager.configureScheduledExport(settings) in invoke()
DLoadScheduledExportStatusUseCase.kt33 private val healthDataExportManager: HealthDataExportManager, in <lambda>() constant in com.android.healthconnect.controller.exportimport.api.LoadScheduledExportStatusUseCase
44 healthDataExportManager.getScheduledExportStatus( in <lambda>()
DQueryDocumentProvidersUseCase.kt32 private val healthDataExportManager: HealthDataExportManager, in <lambda>() constant in com.android.healthconnect.controller.exportimport.api.QueryDocumentProvidersUseCase
44 healthDataExportManager.queryDocumentProviders( in <lambda>()