Searched refs:BOOLEAN_PROP (Results 1 – 1 of 1) sorted by relevance
/packages/services/Car/tests/CarLibUnitTest/src/android/car/hardware/property/ |
D | CarPropertyManagerUnitTest.java | 117 private static final int BOOLEAN_PROP = FUEL_DOOR_OPEN; field in CarPropertyManagerUnitTest 605 CarPropertyValue<Boolean> value = new CarPropertyValue<>(BOOLEAN_PROP, 0, true); in testGetBooleanProperty() 606 when(mICarProperty.getProperty(BOOLEAN_PROP, 0)).thenReturn(value); in testGetBooleanProperty() 608 assertThat(mCarPropertyManager.getBooleanProperty(BOOLEAN_PROP, 0)).isTrue(); in testGetBooleanProperty() 614 when(mICarProperty.getProperty(BOOLEAN_PROP, 0)).thenThrow( in testGetBooleanProperty_notAvailableBeforeR() 618 () -> mCarPropertyManager.getBooleanProperty(BOOLEAN_PROP, 0)); in testGetBooleanProperty_notAvailableBeforeR() 624 when(mICarProperty.getProperty(BOOLEAN_PROP, 0)).thenThrow( in testGetBooleanProperty_notAvailableEqualAfterR() 628 () -> mCarPropertyManager.getBooleanProperty(BOOLEAN_PROP, 0)); in testGetBooleanProperty_notAvailableEqualAfterR() 795 when(mICarProperty.getProperty(BOOLEAN_PROP, 0)).thenThrow( in testGetBooleanProperty_tryAgainBeforeR() 798 assertThat(mCarPropertyManager.getBooleanProperty(BOOLEAN_PROP, 0)).isFalse(); in testGetBooleanProperty_tryAgainBeforeR() [all …]
|