Searched refs:capturedProfile (Results 1 – 1 of 1) sorted by relevance
101 ArgumentCaptor<VideoProfile> capturedProfile = ArgumentCaptor.forClass(VideoProfile.class); in testReceiveUpgradeRequestWhenLocalDoesntSupportVideo() local102 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() local125 verify(mListener).onSessionModifyRequestReceived(any(), capturedProfile.capture()); in testReceiveUpgradeRequestWhenVideoIsSupported()126 assertEquals(VideoProfile.STATE_BIDIRECTIONAL, capturedProfile.getValue().getVideoState()); in testReceiveUpgradeRequestWhenVideoIsSupported()