Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarPropertyServiceUnitTest.java1166 ICarPropertyEventListener mockEventListener = mock(ICarPropertyEventListener.class); in testOnPropertySetError() local
1168 when(mockEventListener.asBinder()).thenReturn(mBinder); in testOnPropertySetError()
1169 mService.setProperty(value, mockEventListener); in testOnPropertySetError()
1174 verify(mockEventListener).onEvent(mPropertyEventCaptor.capture()); in testOnPropertySetError()
1188 ICarPropertyEventListener mockEventListener = mock(ICarPropertyEventListener.class); in testOnPropertySetError_unregisterProperty() local
1190 when(mockEventListener.asBinder()).thenReturn(mBinder); in testOnPropertySetError_unregisterProperty()
1191 mService.setProperty(value, mockEventListener); in testOnPropertySetError_unregisterProperty()
1196 verify(mockEventListener).onEvent(any()); in testOnPropertySetError_unregisterProperty()
1197 clearInvocations(mockEventListener); in testOnPropertySetError_unregisterProperty()
1200 mService.unregisterListener(propertyId, mockEventListener); in testOnPropertySetError_unregisterProperty()
[all …]