Searched refs:isProperty (Results 1 – 3 of 3) sorted by relevance
18 import static android.car.test.mocks.CarArgumentMatchers.isProperty;63 when(mIVehicle.set(isProperty(PROP))) in testSet_remoteExceptionThenFail()76 when(mIVehicle.set(isProperty(PROP))) in testSet_remoteExceptionThenOk()85 when(mIVehicle.set(isProperty(PROP))).thenReturn(StatusCode.INVALID_ARG); in testSet_invalidArgument()96 when(mIVehicle.set(isProperty(PROP))).thenReturn(StatusCode.INTERNAL_ERROR); in testSet_otherError()107 when(mIVehicle.set(isProperty(PROP))).thenReturn(StatusCode.OK); in testSet_ok()
24 import static android.car.test.mocks.CarArgumentMatchers.isProperty;1484 }).when(mVehicleHal).set(isProperty(prop)); in replySetPropertyWithOnChangeEvent()1493 "PropId: 0x" + Integer.toHexString(prop))).when(mVehicleHal).set(isProperty(prop)); in replySetPropertyWithTimeoutException()
65 public static VehiclePropValue isProperty(int prop) { in isProperty() method in CarArgumentMatchers