Home
last modified time | relevance | path

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

/aosp12/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DVideoProviderProxyTest.java101 ArgumentCaptor<VideoProfile> capturedProfile = ArgumentCaptor.forClass(VideoProfile.class); in testReceiveUpgradeRequestWhenLocalDoesntSupportVideo() local
102 verify(mVideoProvider).sendSessionModifyResponse(capturedProfile.capture()); in testReceiveUpgradeRequestWhenLocalDoesntSupportVideo()
103 assertEquals(VideoProfile.STATE_AUDIO_ONLY, capturedProfile.getValue().getVideoState()); in testReceiveUpgradeRequestWhenLocalDoesntSupportVideo()
124 ArgumentCaptor<VideoProfile> capturedProfile = ArgumentCaptor.forClass(VideoProfile.class); in testReceiveUpgradeRequestWhenVideoIsSupported() local
125 verify(mListener).onSessionModifyRequestReceived(any(), capturedProfile.capture()); in testReceiveUpgradeRequestWhenVideoIsSupported()
126 assertEquals(VideoProfile.STATE_BIDIRECTIONAL, capturedProfile.getValue().getVideoState()); in testReceiveUpgradeRequestWhenVideoIsSupported()