Searched refs:expectedText (Results 1 – 5 of 5) sorted by relevance
110 String expectedText = "primary-button"; in onBindViewHolder_setPrimaryButtonText_shouldApplyToPrimaryButton() local111 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() local121 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() local195 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 …]
67 private static void assertNotSuggestionSpan(final String expectedText, in assertNotSuggestionSpan() argument69 assertTrue(TextUtils.equals(expectedText, actualText)); in assertNotSuggestionSpan()79 private static void assertSuggestionSpan(final String expectedText, in assertSuggestionSpan() argument83 assertTrue(TextUtils.equals(expectedText, actualText)); in assertSuggestionSpan()
344 public SpanFormat(int start, String expectedText, int style) { in SpanFormat() argument346 mEnd = start + expectedText.length(); in SpanFormat()347 mExpectedText = expectedText; in SpanFormat()
111 String expectedText = mContext.getString(R.string.battery_tip_charge_to_full_button); in updatePreference_shouldSetPrimaryButtonText() local115 verify(mCardPreference).setPrimaryButtonText(expectedText); in updatePreference_shouldSetPrimaryButtonText()
400 FateMapping(byte fateNumber, String expectedText) { in FateMapping() argument402 this.mExpectedText = expectedText; in FateMapping()