Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/robotests/src/com/android/settings/media/
DRemoteMediaSliceTest.java96 final RoutingSessionInfo remoteSessionInfo = mock(RoutingSessionInfo.class); in setUp() local
97 when(remoteSessionInfo.getId()).thenReturn(TEST_SESSION_1_ID); in setUp()
98 when(remoteSessionInfo.getName()).thenReturn(TEST_SESSION_1_NAME); in setUp()
99 when(remoteSessionInfo.getVolumeMax()).thenReturn(100); in setUp()
100 when(remoteSessionInfo.getVolume()).thenReturn(10); in setUp()
101 when(remoteSessionInfo.isSystemSession()).thenReturn(false); in setUp()
102 mRoutingSessionInfos.add(remoteSessionInfo); in setUp()
DMediaDeviceUpdateWorkerTest.java220 final RoutingSessionInfo remoteSessionInfo = mock(RoutingSessionInfo.class); in getActiveRemoteMediaSession_verifyList() local
221 when(remoteSessionInfo.isSystemSession()).thenReturn(false); in getActiveRemoteMediaSession_verifyList()
222 routingSessionInfos.add(remoteSessionInfo); in getActiveRemoteMediaSession_verifyList()
227 .containsExactly(remoteSessionInfo); in getActiveRemoteMediaSession_verifyList()
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
DRemoteVolumeGroupControllerTest.java116 final RoutingSessionInfo remoteSessionInfo = mock(RoutingSessionInfo.class); in setUp() local
117 when(remoteSessionInfo.getId()).thenReturn(TEST_SESSION_1_ID); in setUp()
118 when(remoteSessionInfo.getName()).thenReturn(TEST_SESSION_1_NAME); in setUp()
119 when(remoteSessionInfo.getVolumeMax()).thenReturn(MAX_VOLUME); in setUp()
120 when(remoteSessionInfo.getVolume()).thenReturn(CURRENT_VOLUME); in setUp()
121 when(remoteSessionInfo.getClientPackageName()).thenReturn(TEST_PACKAGE_NAME); in setUp()
122 when(remoteSessionInfo.isSystemSession()).thenReturn(false); in setUp()
123 mRoutingSessionInfos.add(remoteSessionInfo); in setUp()