Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DPhoneStatusBarViewControllerTest.kt78 @Mock private lateinit var centralSurfacesImpl: CentralSurfacesImpl variable in com.android.systemui.statusbar.phone.PhoneStatusBarViewControllerTest
157 `when`(centralSurfacesImpl.commandQueuePanelsEnabled).thenReturn(false) in handleTouchEventFromStatusBar_panelsNotEnabled_returnsFalseAndNoViewEvent()
166 `when`(centralSurfacesImpl.commandQueuePanelsEnabled).thenReturn(true) in handleTouchEventFromStatusBar_viewNotEnabled_returnsTrueAndNoViewEvent()
176 `when`(centralSurfacesImpl.commandQueuePanelsEnabled).thenReturn(true) in handleTouchEventFromStatusBar_viewNotEnabledButIsMoveEvent_viewReceivesEvent()
187 `when`(centralSurfacesImpl.commandQueuePanelsEnabled).thenReturn(true) in handleTouchEventFromStatusBar_panelAndViewEnabled_viewReceivesEvent()
198 `when`(centralSurfacesImpl.commandQueuePanelsEnabled).thenReturn(true) in handleTouchEventFromStatusBar_topEdgeTouch_viewNeverReceivesEvent()
214 verify(centralSurfacesImpl, never()).setInteracting(any(), any()) in onTouch_windowHidden_centralSurfacesNotNotified()
224 verify(centralSurfacesImpl, never()).setInteracting(any(), any()) in onTouch_windowHiding_centralSurfacesNotNotified()
234 verify(centralSurfacesImpl).setInteracting(any(), any()) in onTouch_windowShowing_centralSurfacesNotified()
299 centralSurfacesImpl, in createAndInitController()