Home
last modified time | relevance | path

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

/cts/tests/tests/os/src/android/os/cts/
DBuildVersionTest.java96 private void assertAnyOf(String label, String actualValue, Set<String> permittedValues) { in assertAnyOf() argument
97 if (!permittedValues.contains(actualValue)) { in assertAnyOf()
98 fail("For: " + label + ", the value: " + actualValue + in assertAnyOf()
/cts/tests/tests/provider/src/android/provider/cts/
DSettingsTest.java222 final int actualValue = Settings.System.getInt(getContext().getContentResolver(), in testNoStaleValueModifiedFromSameProcess() local
224 assertSame("Settings write must be atomic", expectedValue, actualValue); in testNoStaleValueModifiedFromSameProcess()
240 final int actualValue = Settings.System.getInt(getContext().getContentResolver(), in testNoStaleValueModifiedFromOtherProcess() local
242 assertSame("Settings write must be atomic", expectedValue, actualValue); in testNoStaleValueModifiedFromOtherProcess()
263 final int actualValue = Settings.System.getInt(getContext().getContentResolver(), in testNoStaleValueModifiedFromMultipleProcesses() local
265 assertSame("Settings write must be atomic", expectedValue, actualValue); in testNoStaleValueModifiedFromMultipleProcesses()
/cts/tests/tests/animation/src/android/animation/cts/
DKeyframeTest.java113 Float actualValue = (Float) keyFrame.getValue(); in testSetValue() local
114 assertEquals(value, actualValue); in testSetValue()
/cts/tests/tests/rsblas/src/android/renderscript/cts/
DBNNMTest.java92 byte actualValue = c_byte_output[i]; in testWithTolerance()
93 int delta = (expectedValue - actualValue); in testWithTolerance()
104 ", got " + (actualValue & 0xff)); in testWithTolerance()
/cts/tests/autofillservice/src/android/autofillservice/cts/
DHelper.java871 final String actualValue = getAttributeValue(info, attribute); in assertHasAttribute() local
872 assertWithMessage("Attribute %s not found", attribute).that(actualValue).isNotNull(); in assertHasAttribute()
874 .that(actualValue).isEqualTo(expectedValue); in assertHasAttribute()
1108 public static void assertFloat(float actualValue, float expectedValue) { in assertFloat() argument
1109 assertThat(actualValue).isWithin(1.0e-10f).of(expectedValue); in assertFloat()
/cts/tests/camera/utils/src/android/hardware/camera2/cts/helpers/
DCameraErrorCollector.java572 String formattedMsg, String tooSmall, String tooLarge, int actualValue, in expectSimilarValues() argument
576 actualValue <= (expectedValue * (1.0f + errorPercent))) && succ; in expectSimilarValues()
578 actualValue >= (expectedValue * (1.0f - errorPercent))) && succ; in expectSimilarValues()
/cts/tests/tests/net/src/android/net/cts/
DConnectivityManagerTest.java1028 final int actualValue = mCm.getMultipathPreference(network); in assertMultipathPreferenceIsEventually() local
1029 if (actualValue == expectedValue) { in assertMultipathPreferenceIsEventually()
1032 if (actualValue != oldValue) { in assertMultipathPreferenceIsEventually()
/cts/tests/tests/content/src/android/content/cts/
DIntentTest.java1739 String actualValue = intent.getExtras().getString(bundleKey); in testReplaceExtras() local
1740 assertEquals(bundleValue, actualValue); in testReplaceExtras()
1749 actualValue = intent.getExtras().getString(intentName); in testReplaceExtras()
1750 assertEquals(intentValue, actualValue); in testReplaceExtras()