Home
last modified time | relevance | path

Searched refs:ongoingCallRepository (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/chips/call/domain/interactor/
DCallChipInteractorKosmos.kt20 import com.android.systemui.statusbar.phone.ongoingcall.data.repository.ongoingCallRepository
23 Kosmos.Fixture { CallChipInteractor(repository = ongoingCallRepository) } in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/chips/call/domain/interactor/
DCallChipInteractorTest.kt24 import com.android.systemui.statusbar.phone.ongoingcall.data.repository.ongoingCallRepository
33 val repo = kosmos.ongoingCallRepository
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ongoingcall/
DOngoingCallControllerTest.kt93 private val ongoingCallRepository = OngoingCallRepository() constant in com.android.systemui.statusbar.phone.ongoingcall.OngoingCallControllerTest
121 ongoingCallRepository, in setUp()
157 val repoState = ongoingCallRepository.ongoingCallState.value in onEntryUpdated_isOngoingCallNotif_listenerAndRepoNotified()
174 assertThat(ongoingCallRepository.ongoingCallState.value) in onEntryUpdated_notOngoingCallNotif_listenerAndRepoNotNotified()
189 assertThat(ongoingCallRepository.ongoingCallState.value) in onEntryUpdated_ongoingCallNotifThenScreeningCallNotif_repoUpdated()
194 assertThat(ongoingCallRepository.ongoingCallState.value) in onEntryUpdated_ongoingCallNotifThenScreeningCallNotif_repoUpdated()
332 assertThat(ongoingCallRepository.ongoingCallState.value) in onEntryRemoved_callNotifAddedThenRemoved_repoUpdated()
337 assertThat(ongoingCallRepository.ongoingCallState.value) in onEntryRemoved_callNotifAddedThenRemoved_repoUpdated()
381 assertThat(ongoingCallRepository.ongoingCallState.value) in onEntryRemoved_removedNotifHasSameKeyAsAddedNotif_repoUpdated()
401 assertThat(ongoingCallRepository.ongoingCallState.value) in onEntryRemoved_notifKeyDoesNotMatchOngoingCallNotif_repoNotUpdated()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/phone/ongoingcall/data/repository/
DOngoingCallRepositoryKosmos.kt21 val Kosmos.ongoingCallRepository: OngoingCallRepository by constant
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/data/repository/
DStatusBarModeRepositoryImplTest.kt63 private val ongoingCallRepository = OngoingCallRepository() constant in com.android.systemui.statusbar.data.repository.StatusBarModeRepositoryImplTest
71 ongoingCallRepository,
394 ongoingCallRepository.setOngoingCallState( in statusBarMode_ongoingCallAndFullscreen_semiTransparent()
409 ongoingCallRepository.setOngoingCallState( in statusBarMode_ongoingCallButNotFullscreen_matchesAppearance()
425 ongoingCallRepository.setOngoingCallState(OngoingCallModel.NoCall) in statusBarMode_fullscreenButNotOngoingCall_matchesAppearance()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/chips/call/ui/viewmodel/
DCallChipViewModelTest.kt31 import com.android.systemui.statusbar.phone.ongoingcall.data.repository.ongoingCallRepository
45 private val repo = kosmos.ongoingCallRepository
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/chips/ui/viewmodel/
DOngoingActivityChipsViewModelTest.kt35 import com.android.systemui.statusbar.phone.ongoingcall.data.repository.ongoingCallRepository
49 private val callRepo = kosmos.ongoingCallRepository
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/data/repository/
DStatusBarModePerDisplayRepository.kt116 ongoingCallRepository: OngoingCallRepository,
228 ongoingCallRepository.ongoingCallState,
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/
DOngoingCallController.kt65 private val ongoingCallRepository: OngoingCallRepository, in <lambda>() constant in com.android.systemui.statusbar.phone.ongoingcall.OngoingCallController
345 ongoingCallRepository.setOngoingCallState(getOngoingCallModel()) in <lambda>()