Home
last modified time | relevance | path

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

/frameworks/base/services/tests/mockingservicestests/src/com/android/server/sensorprivacy/
DCameraPrivacyLightControllerTest.java96 private ArgumentCaptor<LightsRequest> mLightsRequestCaptor = field in CameraPrivacyLightControllerTest
217 verify(mLightsSession).requestLights(mLightsRequestCaptor.capture()); in testAllCameraLightsAreRequestedOnOpActive()
223 List<Integer> lightsRequestLightIds = mLightsRequestCaptor.getValue().getLights(); in testAllCameraLightsAreRequestedOnOpActive()
296 verify(mLightsSession).requestLights(mLightsRequestCaptor.capture()); in testNoLightSensor()
297 LightsRequest lightsRequest = mLightsRequestCaptor.getValue(); in testNoLightSensor()
335 verify(mLightsSession, atLeastOnce()).requestLights(mLightsRequestCaptor.capture()); in testAlsThresholds()
336 for (LightState lightState : mLightsRequestCaptor.getValue().getLightStates()) { in testAlsThresholds()