Home
last modified time | relevance | path

Searched refs:expectedValue (Results 1 – 25 of 44) sorted by relevance

12

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DByteBufferReaderTest.java145 String expectedValue = "Hello World"; in readString() local
146 ByteBuffer buffer = ByteBuffer.wrap(expectedValue.getBytes(StandardCharsets.US_ASCII)); in readString()
149 assertEquals(expectedValue, actualValue); in readString()
160 String expectedValue = "Hello World"; in readStringWithByteLength() local
161 ByteBuffer buffer = ByteBuffer.allocate(expectedValue.length() + 1); in readStringWithByteLength()
162 buffer.put((byte) expectedValue.length()); in readStringWithByteLength()
163 buffer.put(expectedValue.getBytes(StandardCharsets.US_ASCII)); in readStringWithByteLength()
168 assertEquals(expectedValue, actualValue); in readStringWithByteLength()
/packages/apps/Car/Settings/tests/multivalent/src/com/android/car/settings/common/
DPreferenceControllerTestUtil.java38 public static void assertAvailability(int actualValue, int expectedValue) { in assertAvailability() argument
41 expectedValue, availabilityToString(expectedValue)) in assertAvailability()
42 .that(actualValue).isEqualTo(expectedValue); in assertAvailability()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarRemoteDeviceManagerUnitTest.java94 PackageInfo expectedValue = mock(PackageInfo.class); in testGetEndpointPackageInfo() local
96 .thenReturn(expectedValue); in testGetEndpointPackageInfo()
98 assertThat(mRemoteDeviceManager.getEndpointPackageInfo(zone)).isEqualTo(expectedValue); in testGetEndpointPackageInfo()
213 boolean expectedValue = true; in testIsOccupantZonePowerOn()
214 when(mService.isOccupantZonePowerOn(zone)).thenReturn(expectedValue); in testIsOccupantZonePowerOn()
216 assertThat(mRemoteDeviceManager.isOccupantZonePowerOn(zone)).isEqualTo(expectedValue); in testIsOccupantZonePowerOn()
/packages/apps/Car/systemlibs/car-scalable-ui-lib/test/unit/src/com/android/car/scalableui/model/
DRoleTest.java30 int expectedValue = 25; in testGetValue() local
31 Role role = new Role(expectedValue); in testGetValue()
33 assertThat(actualValue).isEqualTo(expectedValue); in testGetValue()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DBaseContactsProvider2Test.java801 Object expectedValue = expectedArguments[i + 1]; in assertDataRow() local
802 if (expectedValue instanceof Uri) { in assertDataRow()
803 expectedValue = ContentUris.parseId((Uri) expectedValue); in assertDataRow()
805 if (expectedValue == null) { in assertDataRow()
808 if (expectedValue instanceof Long) { in assertDataRow()
810 expectedValue, actual.getAsLong(columnName)); in assertDataRow()
811 } else if (expectedValue instanceof Integer) { in assertDataRow()
813 expectedValue, actual.getAsInteger(columnName)); in assertDataRow()
814 } else if (expectedValue instanceof String) { in assertDataRow()
816 expectedValue, actual.getAsString(columnName)); in assertDataRow()
[all …]
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/responsive/
DSizeSpecTest.kt78 for ((sizeSpec, expectedValue) in combinations) { in validate_getCalculatedValue() constant
80 assertThat(value).isEqualTo(expectedValue) in validate_getCalculatedValue()
101 for ((sizeSpec, expectedValue) in combinations) { in validate_getRemainderSpaceValue() constant
103 assertThat(value).isEqualTo(expectedValue) in validate_getRemainderSpaceValue()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/power/
DPowerComponentUtilUnitTest.java92 int expectedValue = mPowerComponentFields[i].getInt(null); in testToPowerComponent() local
93 assertWithMessage("%s should be convected to %s", componentName, expectedValue) in testToPowerComponent()
95 .isEqualTo(expectedValue); in testToPowerComponent()
99 int expectedValue = mPowerComponentFields[i].getInt(null); in testToPowerComponent() local
100 assertWithMessage("%s should be convected to %s", componentName, expectedValue) in testToPowerComponent()
DSilentModeHandlerUnitTest.java245 String expectedValue = expectedMode ? VALUE_SILENT_MODE : VALUE_NON_SILENT_MODE; in assertSilentMode() local
249 && (isForcedMode || contents.equals(expectedValue))) { in assertSilentMode()
/packages/modules/AdServices/adservices/tests/unittest/service-core/measurement/src/com/android/adservices/data/measurement/migration/
DMigrationTestHelper.java126 Object expectedValue = expectedElement.getValue(); in doContentValueMatch() local
140 if (expectedValue.equals(actualValue)) { in doContentValueMatch()
143 if (expectedValue instanceof Number in doContentValueMatch()
145 ((Number) expectedValue).floatValue(), in doContentValueMatch()
/packages/modules/AdServices/sdksandbox/tests/cts/endtoendtests/providers/MediationProvider/src/com/android/sdksandbox/cts/provider/mediationtest/
DMediationTestSdkApiImpl.java73 public void checkCanCallMediateeInterface(boolean inSandbox, String expectedValue) { in checkCanCallMediateeInterface() argument
81 if (!clientPackageName.equals(expectedValue)) { in checkCanCallMediateeInterface()
86 + expectedValue); in checkCanCallMediateeInterface()
DIMediationTestSdkApi.aidl24 void checkCanCallMediateeInterface(boolean inSandbox, String expectedValue); in checkCanCallMediateeInterface() argument
/packages/modules/HealthFitness/tests/cts/src/android/healthconnect/cts/aggregation/
DAggregateOtherAppsDataTest.java150 private static <T> void assertAggregation(AggregationType<T> aggregationType, T expectedValue) in assertAggregation() argument
153 aggregationType, expectedValue, NOW.minus(1000, DAYS), NOW.plus(1000, DAYS)); in assertAggregation()
157 AggregationType<T> aggregationType, T expectedValue, Instant startTime, Instant endTime) in assertAggregation() argument
169 assertThat(response.get(aggregationType)).isEqualTo(expectedValue); in assertAggregation()
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/data/shared/migration/
DMigrationTestHelper.java143 Object expectedValue = expectedElement.getValue(); in doContentValueMatch() local
157 if (expectedValue.equals(actualValue)) { in doContentValueMatch()
160 if (expectedValue instanceof Number in doContentValueMatch()
162 ((Number) expectedValue).floatValue(), in doContentValueMatch()
/packages/apps/Settings/tests/robotests/src/com/android/settings/biometrics/
DBiometricSettingsProviderTest.kt81 val expectedValue = false in getSuggestionState_shouldQueryFeatureProvider() constant
82 setSupportFaceEnroll(expectedValue) in getSuggestionState_shouldQueryFeatureProvider()
86 .isEqualTo(expectedValue) in getSuggestionState_shouldQueryFeatureProvider()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/util/
DMetricsUtilsTest.java190 MetricsUtils.LogHistParms hp, int expectedKey, int expectedValue) { in bucketValueAndVerify() argument
192 collector.checkThat(prefix + value, h.get(expectedKey), equalTo(expectedValue)); in bucketValueAndVerify()
196 int expectedKey, int expectedValue) { in bucketValueAndVerify() argument
198 collector.checkThat(prefix + value, h.get(expectedKey), equalTo(expectedValue)); in bucketValueAndVerify()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
DMoreKeySpecTests.java304 final String[] moreKeys, final String[] expected, final boolean expectedValue) { in assertGetBooleanValue() argument
307 assertEquals(message + " [value]", expectedValue, actualValue); in assertGetBooleanValue()
344 final int expectedValue) { in assertGetIntValue() argument
347 assertEquals(message + " [value]", expectedValue, actualValue); in assertGetIntValue()
/packages/modules/ExtServices/java/tests/src/android/ext/services/autofill/
DEditDistanceScorerTest.java82 public static void assertFloat(float actualValue, float expectedValue) { in assertFloat() argument
83 assertThat(actualValue).isWithin(0.01F).of(expectedValue); in assertFloat()
DExactMatchTest.java96 public static void assertFloat(float actualValue, float expectedValue) { in assertFloat() argument
97 assertThat(actualValue).isWithin(0.01F).of(expectedValue); in assertFloat()
DCreditCardMatcherTest.java94 public static void assertFloat(float actualValue, float expectedValue) { in assertFloat() argument
95 assertThat(actualValue).isWithin(0.01F).of(expectedValue); in assertFloat()
/packages/apps/Settings/tests/robotests/src/com/android/settings/privacy/
DEnableContentCapturePreferenceControllerTest.java98 private void assertProperty(int expectedValue) throws SettingNotFoundException { in assertProperty() argument
101 .isEqualTo(expectedValue); in assertProperty()
DShowClipAccessNotificationPreferenceControllerTest.java136 private void assertProperty(int expectedValue) throws SettingNotFoundException { in assertProperty() argument
140 .isEqualTo(expectedValue); in assertProperty()
/packages/modules/Connectivity/staticlibs/tests/unit/src/com/android/net/module/util/async/
DCircularByteBufferTest.java209 byte expectedValue = (byte) (startValue & 0xFF); in checkTestBytes()
210 if (expectedValue != buffer[pos + i]) { in checkTestBytes()
212 + ", expected=" + (((int) expectedValue) & 0xFF) in checkTestBytes()
/packages/apps/TV/tests/func/src/com/android/tv/tests/ui/
DParentalControlsTest.java103 int minAge, int maxAge, int selectedAge, boolean expectedValue) { in assertRatingViewIsChecked() argument
118 expectedValue, in assertRatingViewIsChecked()
/packages/services/Car/tests/CarServiceTest/src/com/android/car/
DCarVendorExtensionManagerTest.java248 final Long expectedValue = 100L; in testLongProperty() local
252 expectedValue); in testLongProperty()
258 assertEquals(expectedValue, actualValue); in testLongProperty()
/packages/modules/OnDevicePersonalization/tests/cts/service/src/com/android/ondevicepersonalization/testing/sampleservice/
DSampleWorker.java271 final long expectedValue = appParams.getLong(SampleServiceApi.KEY_EXPECTED_LOG_DATA_VALUE); in handleReadLog() local
289 if (value == expectedValue) { in handleReadLog()
372 byte[] expectedValue = expandByteArray(value, repeatCount); in handleReadLocalData()
374 success = Arrays.equals(expectedValue, actualValue); in handleReadLocalData()

12