Home
last modified time | relevance | path

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

/packages/services/Car/tests/CarLibUnitTest/src/android/car/hardware/property/
DCarPropertyManagerUnitTest.java148 private ICarProperty mICarProperty; field in CarPropertyManagerUnitTest
262 when(mICarProperty.getPropertyConfigList(any())).thenAnswer((invocation) -> { in setUp()
295 when(mICarProperty.getSupportedNoReadPermPropIds(any())).thenReturn(new int[0]); in setUp()
296 mCarPropertyManager = new CarPropertyManager(mCar, mICarProperty); in setUp()
306 when(mICarProperty.getProperty(HVAC_TEMPERATURE_SET, 0)).thenReturn(value); in testGetProperty_returnsValue()
329 when(mICarProperty.getProperty(HVAC_TEMPERATURE_SET, 0)).thenThrow( in testGetProperty_unsupportedPropertyInSvc_exceptionAtU()
339 when(mICarProperty.getProperty(HVAC_TEMPERATURE_SET, 0)).thenThrow( in testGetProperty_unsupportedPropertyInSvc_nullBeforeU()
349 when(mICarProperty.getProperty(HVAC_TEMPERATURE_SET, 0)).thenThrow( in testGetProperty_syncOpTryAgain()
353 verify(mICarProperty, times(2)).getProperty(HVAC_TEMPERATURE_SET, 0); in testGetProperty_syncOpTryAgain()
361 when(mICarProperty.getProperty(HVAC_TEMPERATURE_SET, 0)).thenThrow( in testGetProperty_syncOpTryAgain_exceedRetryCountLimit()
[all …]
/packages/services/Car/tests/CarLibUnitTest/src/android/car/
DCarUnitTest.java103 private ICarProperty.Stub mICarProperty; field in CarUnitTest
164 return mICarProperty; in getCarService()