Home
last modified time | relevance | path

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

/packages/services/Car/tests/CarLibUnitTest/src/android/car/media/
DCarVolumeGroupInfoUnitTest.java63 private static final CarVolumeGroupInfo TEST_VOLUME_INFO = field in CarVolumeGroupInfoUnitTest
359 TEST_VOLUME_INFO.writeToParcel(parcel, TEST_PARCEL_FLAGS); in writeToParcel_withAllFlagsDisabled()
363 .that(new CarVolumeGroupInfo(parcel)).isEqualTo(TEST_VOLUME_INFO); in writeToParcel_withAllFlagsDisabled()
371 CarVolumeGroupInfo volumeGroupInfo = new CarVolumeGroupInfo.Builder(TEST_VOLUME_INFO) in writeToParcel_withAllFlagsEnabled()
394 TEST_VOLUME_INFO.writeToParcel(parcel, TEST_PARCEL_FLAGS); in createFromParcel_withAllFlagsDisabled()
399 .isEqualTo(TEST_VOLUME_INFO); in createFromParcel_withAllFlagsDisabled()
407 CarVolumeGroupInfo volumeGroupInfo = new CarVolumeGroupInfo.Builder(TEST_VOLUME_INFO) in createFromParcel_withAllFlagsEnabled()
435 new CarVolumeGroupInfo.Builder(TEST_VOLUME_INFO) in equals_forSameContent()
443 .that(infoWithSameContent).isEqualTo(TEST_VOLUME_INFO); in equals_forSameContent()
478 CarVolumeGroupInfo infoWithSameContent = new CarVolumeGroupInfo.Builder(TEST_VOLUME_INFO) in hashCode_forSameContent_forAllFlagsDisabled()
[all …]
DCarAudioZoneConfigInfoUnitTest.java60 private static final CarVolumeGroupInfo TEST_VOLUME_INFO = field in CarAudioZoneConfigInfoUnitTest
71 new CarAudioZoneConfigInfo(TEST_CONFIG_NAME, List.of(TEST_VOLUME_INFO),
147 TEST_ZONE_CONFIG_INFO.getConfigVolumeGroups()).containsExactly(TEST_VOLUME_INFO); in getConfigVolumeGroups()
183 List.of(TEST_VOLUME_INFO), TEST_ZONE_ID, TEST_CONFIG_ID, TEST_ACTIVE_STATUS, in equals_forSameContent_withDynamicFlagEnabled()
194 List.of(TEST_VOLUME_INFO), TEST_ZONE_ID, TEST_CONFIG_ID_2, TEST_ACTIVE_STATUS, in equals_forDifferentContent_withDynamicFlagEnabled()
/packages/services/Car/tests/CarLibUnitTest/src/android/car/oem/
DOemCarAudioVolumeRequestUnitTest.java47 private static final CarVolumeGroupInfo TEST_VOLUME_INFO = field in OemCarAudioVolumeRequestUnitTest
71 .addCarVolumeGroupInfos(TEST_VOLUME_INFO).build();
126 .setCarVolumeGroupInfos(List.of(TEST_VOLUME_INFO)).build(); in setCarVolumeGroupInfos()
129 .that(request.getCarVolumeGroupInfos()).containsExactly(TEST_VOLUME_INFO); in setCarVolumeGroupInfos()