Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/android/car/test/mocks/
DCarArgumentMatchersTest.java61 private IVehicle mIVehicle; field in CarArgumentMatchersTest
71 mFakeService = new FakeService(mUserManager, mIVehicle, mIntentFirer, mUserInfoCheck); in setUp()
105 when(mIVehicle.set(isProperty(VEHICLE_PROP_NAME))).thenReturn(StatusCode.OK); in testIsProperty()
113 verify(mIVehicle).set(prop); in testIsProperty()
118 when(mIVehicle.set(isPropertyWithValues(VEHICLE_PROP_NAME, VEHICLE_PROP_VALUE))).thenReturn( in testIsPropertyWithValues()
128 verify(mIVehicle).set(prop); in testIsPropertyWithValues()
134 private final IVehicle mIVehicle; field in CarArgumentMatchersTest.FakeService
141 mIVehicle = iVehicle; in FakeService()
151 return mIVehicle.set(vehicleProp); in setVehiclePropValue()