Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/robotests/src/com/android/settings/gestures/
DGesturePreferenceControllerTest.java87 final VideoPreference videoPreference = mock(VideoPreference.class); in onResume_shouldStartVideoPreferenceWithVideoPauseState() local
88 when(mScreen.findPreference(mController.getVideoPrefKey())).thenReturn(videoPreference); in onResume_shouldStartVideoPreferenceWithVideoPauseState()
96 verify(videoPreference).onViewVisible(false); in onResume_shouldStartVideoPreferenceWithVideoPauseState()
98 reset(videoPreference); in onResume_shouldStartVideoPreferenceWithVideoPauseState()
102 verify(videoPreference).onViewVisible(true); in onResume_shouldStartVideoPreferenceWithVideoPauseState()
104 reset(videoPreference); in onResume_shouldStartVideoPreferenceWithVideoPauseState()
108 verify(videoPreference).onViewVisible(false); in onResume_shouldStartVideoPreferenceWithVideoPauseState()
113 final VideoPreference videoPreference = mock(VideoPreference.class); in onPause_shouldStopVideoPreference() local
114 when(mScreen.findPreference(mController.getVideoPrefKey())).thenReturn(videoPreference); in onPause_shouldStopVideoPreference()
120 verify(videoPreference).onViewInvisible(); in onPause_shouldStopVideoPreference()
[all …]