Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/robotests/src/com/android/settings/widget/
DCardPreferenceTest.java110 String expectedText = "primary-button"; in onBindViewHolder_setPrimaryButtonText_shouldApplyToPrimaryButton() local
111 mCardPreference.setPrimaryButtonText(expectedText); in onBindViewHolder_setPrimaryButtonText_shouldApplyToPrimaryButton()
115 assertThat(getPrimaryButton().getText().toString()).isEqualTo(expectedText); in onBindViewHolder_setPrimaryButtonText_shouldApplyToPrimaryButton()
120 String expectedText = "secondary-button"; in onBindViewHolder_setSecondaryButtonText_shouldApplyToSecondaryButton() local
121 mCardPreference.setSecondaryButtonText(expectedText); in onBindViewHolder_setSecondaryButtonText_shouldApplyToSecondaryButton()
125 assertThat(getSecondaryButton().getText().toString()).isEqualTo(expectedText); in onBindViewHolder_setSecondaryButtonText_shouldApplyToSecondaryButton()
192 String expectedText = "123456"; in setPrimaryButtonText_setAfterBindViewHolder_setOnUi() local
195 mCardPreference.setPrimaryButtonText(expectedText); in setPrimaryButtonText_setAfterBindViewHolder_setOnUi()
197 assertThat(getPrimaryButton().getText().toString()).isEqualTo(expectedText); in setPrimaryButtonText_setAfterBindViewHolder_setOnUi()
249 String expectedText = "10101010"; in setSecondaryButtonText_setAfterBindViewHolder_setOnUi() local
[all …]
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/compat/
DSuggestionSpanUtilsTest.java67 private static void assertNotSuggestionSpan(final String expectedText, in assertNotSuggestionSpan() argument
69 assertTrue(TextUtils.equals(expectedText, actualText)); in assertNotSuggestionSpan()
79 private static void assertSuggestionSpan(final String expectedText, in assertSuggestionSpan() argument
83 assertTrue(TextUtils.equals(expectedText, actualText)); in assertSuggestionSpan()
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
DLevenshteinFormatterTest.java344 public SpanFormat(int start, String expectedText, int style) { in SpanFormat() argument
346 mEnd = start + expectedText.length(); in SpanFormat()
347 mExpectedText = expectedText; in SpanFormat()
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/batterytip/tips/
DBatteryDefenderTipTest.java111 String expectedText = mContext.getString(R.string.battery_tip_charge_to_full_button); in updatePreference_shouldSetPrimaryButtonText() local
115 verify(mCardPreference).setPrimaryButtonText(expectedText); in updatePreference_shouldSetPrimaryButtonText()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiNativeTest.java400 FateMapping(byte fateNumber, String expectedText) { in FateMapping() argument
402 this.mExpectedText = expectedText; in FateMapping()