/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/ |
D | InputLogicTests.java | 49 assertEquals("type word", WORD_TO_TYPE, mEditText.getText().toString()); in testTypeWord() 60 mEditText.getText().toString()); in testPickSuggestionThenBackspace() 72 mEditText.getText().toString()); in testPickAutoCorrectionThenBackspace() 75 mEditText.getText().toString()); in testPickAutoCorrectionThenBackspace() 86 mEditText.getText().toString()); in testPickTypedWordOverAutoCorrectionThenBackspace() 89 mEditText.getText().toString()); in testPickTypedWordOverAutoCorrectionThenBackspace() 101 mEditText.getText().toString()); in testPickDifferentSuggestionThenBackspace() 104 mEditText.getText().toString()); in testPickDifferentSuggestionThenBackspace() 125 assertEquals("delete selection", EXPECTED_RESULT, mEditText.getText().toString()); in testDeleteSelection() 147 assertEquals("delete selection twice", EXPECTED_RESULT, mEditText.getText().toString()); in testDeleteSelectionTwice() [all …]
|
D | InputLogicTestsLanguageWithoutSpaces.java | 32 mEditText.getText().toString()); in testAutoCorrectForLanguageWithoutSpaces() 42 EXPECTED_INTERMEDIATE_RESULT, mEditText.getText().toString()); in testRevertAutoCorrectForLanguageWithoutSpaces() 45 EXPECTED_FINAL_RESULT, mEditText.getText().toString()); in testRevertAutoCorrectForLanguageWithoutSpaces() 48 BaseInputConnection.getComposingSpanStart(mEditText.getText())); in testRevertAutoCorrectForLanguageWithoutSpaces() 50 BaseInputConnection.getComposingSpanEnd(mEditText.getText())); in testRevertAutoCorrectForLanguageWithoutSpaces() 58 BaseInputConnection.getComposingSpanStart(mEditText.getText())); in testDontResumeSuggestionOnBackspace() 60 BaseInputConnection.getComposingSpanEnd(mEditText.getText())); in testDontResumeSuggestionOnBackspace() 64 BaseInputConnection.getComposingSpanStart(mEditText.getText())); in testDontResumeSuggestionOnBackspace() 66 BaseInputConnection.getComposingSpanEnd(mEditText.getText())); in testDontResumeSuggestionOnBackspace() 82 BaseInputConnection.getComposingSpanStart(mEditText.getText())); in testStartComposingInsideText() [all …]
|
D | PunctuationTests.java | 48 EXPECTED_RESULT, mEditText.getText().toString()); in testWordThenSpaceThenPunctuationFromStripTwice() 60 mEditText.getText().toString()); in testWordThenSpaceThenPunctuationFromKeyboardTwice() 74 mEditText.getText().toString()); in testManualPickThenPunctuationFromStripTwiceThenType() 85 mEditText.getText().toString()); in testManualPickThenManualPickWithPunctAtStart() 96 EXPECTED_RESULT, mEditText.getText().toString()); in testManuallyPickedWordThenColon() 107 EXPECTED_RESULT, mEditText.getText().toString()); in testManuallyPickedWordThenOpenParen() 118 EXPECTED_RESULT, mEditText.getText().toString()); in testManuallyPickedWordThenCloseParen() 129 EXPECTED_RESULT, mEditText.getText().toString()); in testManuallyPickedWordThenSmiley() 140 EXPECTED_RESULT, mEditText.getText().toString()); in testManuallyPickedWordThenDotCom() 150 EXPECTED_RESULT, mEditText.getText().toString()); in testTypeWordTypeDotThenPressDotCom() [all …]
|
D | InputLogicTestsDeadKeys.java | 61 assertEquals("simple dead circumflex", EXPECTED_RESULT, mEditText.getText().toString()); in testDeadCircumflexSimple() 75 assertEquals("dead circumflex backspace", EXPECTED_RESULT, mEditText.getText().toString()); in testDeadCircumflexBackspace() 88 mEditText.getText().toString()); in testDeadCircumflexFeedback() 106 mEditText.getText().toString()); in testDeadDiaeresisSpace() 120 assertEquals("dead acute on a typed", EXPECTED_RESULT1, mEditText.getText().toString()); in testDeadAcuteLetterBackspace() 124 assertEquals("a with acute deleted", EXPECTED_RESULT2, mEditText.getText().toString()); in testDeadAcuteLetterBackspace() 140 mEditText.getText().toString()); in testFinnishStroke() 163 mEditText.getText().toString()); in testDoubleDeadOgonek() 179 mEditText.getText().toString()); in testDeadCircumflexDeadDiaeresis() 196 mEditText.getText().toString()); in testDeadCircumflexDeadDiaeresisBackspace() [all …]
|
D | BlueUnderlineTests.java | 35 final SpanGetter span = new SpanGetter(mEditText.getText(), SuggestionSpan.class); in testBlueUnderline() 52 final SpanGetter spanBefore = new SpanGetter(mEditText.getText(), SuggestionSpan.class); in testBlueUnderlineDisappears() 59 final SpanGetter spanAfter = new SpanGetter(mEditText.getText(), SuggestionSpan.class); in testBlueUnderlineDisappears() 82 final SpanGetter suggestionSpan = new SpanGetter(mEditText.getText(), SuggestionSpan.class); in testBlueUnderlineOnBackspace() 85 final SpanGetter underlineSpan = new SpanGetter(mEditText.getText(), UnderlineSpan.class); in testBlueUnderlineOnBackspace() 109 final SpanGetter span = new SpanGetter(mEditText.getText(), SuggestionSpan.class); in testBlueUnderlineDisappearsWhenCursorMoved() 124 SpanGetter span = new SpanGetter(mEditText.getText(), UnderlineSpan.class); in testComposingStopsOnSpace()
|
/packages/apps/Settings/src/com/android/settings/vpn2/ |
D | ConfigDialog.java | 391 return mUsername.getText().length() != 0 && mPassword.getText().length() != 0; in validate() 393 if (mName.getText().length() == 0 || mServer.getText().length() == 0 || in validate() 394 !validateAddresses(mDnsServers.getText().toString(), false) || in validate() 395 !validateAddresses(mRoutes.getText().toString(), true)) { in validate() 410 return mIpsecSecret.getText().length() != 0; in validate() 484 profile.name = mName.getText().toString(); in getProfile() 486 profile.server = mServer.getText().toString().trim(); in getProfile() 487 profile.username = mUsername.getText().toString(); in getProfile() 488 profile.password = mPassword.getText().toString(); in getProfile() 489 profile.searchDomains = mSearchDomains.getText().toString().trim(); in getProfile() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/vpn2/ |
D | ConfigDialog.java | 391 return mUsername.getText().length() != 0 && mPassword.getText().length() != 0; in validate() 393 if (mName.getText().length() == 0 || mServer.getText().length() == 0 || in validate() 394 !validateAddresses(mDnsServers.getText().toString(), false) || in validate() 395 !validateAddresses(mRoutes.getText().toString(), true)) { in validate() 410 return mIpsecSecret.getText().length() != 0; in validate() 484 profile.name = mName.getText().toString(); in getProfile() 486 profile.server = mServer.getText().toString().trim(); in getProfile() 487 profile.username = mUsername.getText().toString(); in getProfile() 488 profile.password = mPassword.getText().toString(); in getProfile() 489 profile.searchDomains = mSearchDomains.getText().toString().trim(); in getProfile() [all …]
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/datausage/ |
D | DataUsageSummaryPreferenceTest.java | 147 assertThat(mCarrierInfo.getText().toString()) in testCarrierUpdateTime_shouldFormatDaysCorrectly() 162 assertThat(mCarrierInfo.getText().toString()) in testCarrierUpdateTime_shouldFormatHoursCorrectly() 177 assertThat(mCarrierInfo.getText().toString()) in testCarrierUpdateTime_shouldFormatMinutesCorrectly() 189 assertThat(mCarrierInfo.getText().toString()) in testCarrierUpdateTime_shouldFormatLessThanMinuteCorrectly() 201 assertThat(mCarrierInfo.getText().toString()) in testCarrierUpdateTimeWithNoCarrier_shouldSayJustNow() 213 assertThat(mCarrierInfo.getText().toString()) in testCarrierUpdateTimeWithNoCarrier_shouldFormatTime() 272 assertThat(mCycleTime.getText()).isEqualTo( in testSetUsageInfo_cycleRemainingTimeIsLessOneDay() 284 assertThat(mCycleTime.getText()).isEqualTo( in testSetUsageInfo_cycleRemainingTimeNegativeDaysLeft_shouldDisplayNoneLeft() 298 assertThat(mCycleTime.getText()).isEqualTo(daysLeft + " days left"); in testSetUsageInfo_cycleRemainingTimeDaysLeft_shouldUsePlurals() 308 assertThat(mDataLimits.getText()).isEqualTo(limitText); in testSetLimitInfo_withLimitInfo_dataLimitsShown() [all …]
|
/packages/apps/Settings/src/com/android/settings/network/ |
D | ApnEditor.java | 565 mName.setSummary(checkNull(mName.getText())); in fillUI() 566 mApn.setSummary(checkNull(mApn.getText())); in fillUI() 567 mProxy.setSummary(checkNull(mProxy.getText())); in fillUI() 568 mPort.setSummary(checkNull(mPort.getText())); in fillUI() 569 mUser.setSummary(checkNull(mUser.getText())); in fillUI() 570 mServer.setSummary(checkNull(mServer.getText())); in fillUI() 571 mPassword.setSummary(starify(mPassword.getText())); in fillUI() 572 mMmsProxy.setSummary(checkNull(mMmsProxy.getText())); in fillUI() 573 mMmsPort.setSummary(checkNull(mMmsPort.getText())); in fillUI() 574 mMmsc.setSummary(checkNull(mMmsc.getText())); in fillUI() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/network/ |
D | ApnEditor.java | 565 mName.setSummary(checkNull(mName.getText())); in fillUI() 566 mApn.setSummary(checkNull(mApn.getText())); in fillUI() 567 mProxy.setSummary(checkNull(mProxy.getText())); in fillUI() 568 mPort.setSummary(checkNull(mPort.getText())); in fillUI() 569 mUser.setSummary(checkNull(mUser.getText())); in fillUI() 570 mServer.setSummary(checkNull(mServer.getText())); in fillUI() 571 mPassword.setSummary(starify(mPassword.getText())); in fillUI() 572 mMmsProxy.setSummary(checkNull(mMmsProxy.getText())); in fillUI() 573 mMmsPort.setSummary(checkNull(mMmsPort.getText())); in fillUI() 574 mMmsc.setSummary(checkNull(mMmsc.getText())); in fillUI() [all …]
|
/packages/apps/Messaging/src/com/android/messaging/ui/appsettings/ |
D | ApnEditorActivity.java | 290 mName.setSummary(checkNull(mName.getText())); in fillUi() 291 mMmsProxy.setSummary(checkNull(mMmsProxy.getText())); in fillUi() 292 mMmsPort.setSummary(checkNull(mMmsPort.getText())); in fillUi() 293 mMmsc.setSummary(checkNull(mMmsc.getText())); in fillUi() 294 mMcc.setSummary(checkNull(mMcc.getText())); in fillUi() 295 mMnc.setSummary(checkNull(mMnc.getText())); in fillUi() 351 final String name = checkNotSet(mName.getText()); in validateAndSave() 352 final String mcc = checkNotSet(mMcc.getText()); in validateAndSave() 353 final String mnc = checkNotSet(mMnc.getText()); in validateAndSave() 372 values.put(Telephony.Carriers.MMSPROXY, checkNotSet(mMmsProxy.getText())); in validateAndSave() [all …]
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/manageapplications/ |
D | ApplicationViewHolderTest.java | 60 assertThat(mHolder.mDisabled.getText()).isEqualTo(mContext.getText(R.string.disabled)); in updateDisableView_appDisabledUntilUsed_shouldSetDisabled() 66 assertThat(mHolder.mSummary.getText()).isEqualTo("hello"); in setSummaries() 69 assertThat(mHolder.mSummary.getText()).isEqualTo(mContext.getText(R.string.disabled)); in setSummaries() 81 assertThat(mHolder.mSummary.getText()).isEqualTo(entry.internalSizeStr); in updateSize() 84 assertThat(mHolder.mSummary.getText()).isEqualTo(entry.externalSizeStr); in updateSize() 89 assertThat(mHolder.mSummary.getText()).isEqualTo(invalidStr); in updateSize()
|
/packages/apps/Settings/src/com/android/settings/wifi/calling/ |
D | WifiCallingSliceHelper.java | 158 mContext.getText(R.string.wifi_calling_settings_title), in createWifiCallingSlice() 159 mContext.getText( in createWifiCallingSlice() 195 .setTitle(mContext.getText(R.string.wifi_calling_settings_title)) in getWifiCallingSlice() 204 mContext.getText(R.string.wifi_calling_settings_title)))) in getWifiCallingSlice() 260 mContext.getText(R.string.wifi_calling_mode_title), in createWifiCallingPreferenceSlice() 261 mContext.getText(R.string.wifi_calling_turn_on), in createWifiCallingPreferenceSlice() 285 .setTitle(mContext.getText(R.string.wifi_calling_mode_title)) in getWifiCallingPreferenceSlice() 291 mContext.getText(R.string.wifi_calling_mode_title)))); in getWifiCallingPreferenceSlice() 326 .setTitle(mContext.getText(preferenceTitleResId)) in wifiPreferenceRowBuilder() 328 icon, mContext.getText(preferenceTitleResId), checked)); in wifiPreferenceRowBuilder() [all …]
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/wifi/calling/ |
D | WifiCallingSliceHelper.java | 158 mContext.getText(R.string.wifi_calling_settings_title), in createWifiCallingSlice() 159 mContext.getText( in createWifiCallingSlice() 195 .setTitle(mContext.getText(R.string.wifi_calling_settings_title)) in getWifiCallingSlice() 204 mContext.getText(R.string.wifi_calling_settings_title)))) in getWifiCallingSlice() 260 mContext.getText(R.string.wifi_calling_mode_title), in createWifiCallingPreferenceSlice() 261 mContext.getText(R.string.wifi_calling_turn_on), in createWifiCallingPreferenceSlice() 285 .setTitle(mContext.getText(R.string.wifi_calling_mode_title)) in getWifiCallingPreferenceSlice() 291 mContext.getText(R.string.wifi_calling_mode_title)))); in getWifiCallingPreferenceSlice() 326 .setTitle(mContext.getText(preferenceTitleResId)) in wifiPreferenceRowBuilder() 328 icon, mContext.getText(preferenceTitleResId), checked)); in wifiPreferenceRowBuilder() [all …]
|
/packages/services/Telephony/src/com/android/phone/ |
D | ChangeIccPinScreen.java | 134 setTitle(getResources().getText(id)); in onCreate() 179 String oldPin = mOldPin.getText().toString(); 180 String newPin1 = mNewPin1.getText().toString(); 181 String newPin2 = mNewPin2.getText().toString(); 188 mNewPin1.getText().clear(); 189 mNewPin2.getText().clear(); 227 mPhone.getIccCard().supplyPuk2(mPUKCode.getText().toString(), 228 mNewPin1.getText().toString(), 256 mOldPin.getText().clear(); in handleResult() 271 mPUKCode.getText().clear(); in handleResult()
|
D | EmergencyDialer.java | 250 mDigits.getText().clear(); in afterTextChanged() 451 if (TextUtils.isEmpty(mDigits.getText().toString())) { in onKeyDown() 544 mDigits.getText().clear(); in onClick() 628 mDigits.getText().clear(); in onLongClick() 737 mLastNumber = mDigits.getText().toString(); in placeCall() 793 mDigits.getText().delete(0, mDigits.getText().length()); in placeCall() 867 return getText(R.string.dial_emergency_empty_error).toString(); in createErrorMessage() 877 .setTitle(getText(R.string.emergency_enable_radio_dialog_title)) in onCreateDialog() 925 mDigits.getText().delete(currentPosition - 1, currentPosition); in removePreviousDigitIfPossible() 933 for (Object o : mDigits.getText().getSpans(0, mDigits.getText().length(), TtsSpan.class)) { in updateTtsSpans() [all …]
|
D | EnableIccPinScreen.java | 74 setTitle(getResources().getText(id)); in onCreate() 99 return mPinField.getText().toString(); in getPin() 112 showStatus(getResources().getText( in handleResult() 118 showStatus(getResources().getText( in handleResult() 131 if (TextUtils.isEmpty(mPinField.getText())) { 135 showStatus(getResources().getText(
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/spellcheck/ |
D | AndroidSpellCheckerServiceTest.java | 29 mEditText.setSelection(mEditText.getText().length()); in testSpellchecker() 35 final SpanGetter span = new SpanGetter(mEditText.getText(), SuggestionSpan.class); in testSpellchecker() 49 mEditText.setSelection(mEditText.getText().length()); in testRussianSpellchecker() 55 final SpanGetter span = new SpanGetter(mEditText.getText(), SuggestionSpan.class); in testRussianSpellchecker() 63 mEditText.setSelection(mEditText.getText().length()); in testSpellcheckWithPeriods() 69 final SpanGetter span = new SpanGetter(mEditText.getText(), SuggestionSpan.class); in testSpellcheckWithPeriods()
|
/packages/apps/Car/Dialer/tests/robotests/src/com/android/car/dialer/ui/contact/ |
D | ContactListViewHolderTest.java | 84 assertThat(((TextView) mItemView.findViewById(R.id.title)).getText()).isEqualTo( in testDisplayName() 95 assertThat(((TextView) mItemView.findViewById(R.id.text)).getText()).isEqualTo(LABEL_1); in testLabel_withOnlyOneNumber_showLabel() 105 assertThat(((TextView) mItemView.findViewById(R.id.text)).getText()).isEqualTo( in testLabel_withOneNumberAndNumberHasNullLabel_showTypeLabel() 106 mContext.getResources().getText( in testLabel_withOneNumberAndNumberHasNullLabel_showTypeLabel() 119 assertThat(((TextView) mItemView.findViewById(R.id.text)).getText()).isEqualTo(""); in testLabel_withOneNumberAndGetNullLabel_showEmptyString() 132 assertThat(((TextView) mItemView.findViewById(R.id.text)).getText()).isEqualTo( in testLabel_withMultipleNumbersAndNoPrimaryNumber_showMultipleLabel() 147 assertThat(((TextView) mItemView.findViewById(R.id.text)).getText()).isEqualTo( in testLabel_withMultipleNumbersAndHasPrimaryNumber_showPrimaryNumberLabel() 162 assertThat(((TextView) mItemView.findViewById(R.id.text)).getText()).isEqualTo( in testLabel_HasPrimaryNumberAndPrimaryNumberHasNullLabel_showPrimaryNumberLabel() 164 mContext.getResources().getText( in testLabel_HasPrimaryNumberAndPrimaryNumberHasNullLabel_showPrimaryNumberLabel() 181 assertThat(((TextView) mItemView.findViewById(R.id.text)).getText()).isEqualTo( in testLabel_HasPrimaryNumberButGetNullLabel_showMultipleLabel()
|
/packages/services/Telephony/src/com/android/phone/settings/fdn/ |
D | FdnSetting.java | 113 String password = mButtonEnableFDN.getText(); in toggleFDNEnable() 158 mOldPin = mButtonChangePin2.getText(); in updatePINChangeState() 169 mNewPin = mButtonChangePin2.getText(); in updatePINChangeState() 181 if (!mNewPin.equals(mButtonChangePin2.getText())) { in updatePINChangeState() 196 mPuk2 = mButtonChangePin2.getText(); in updatePINChangeState() 209 mNewPin = mButtonChangePin2.getText(); in updatePINChangeState() 223 if (!mNewPin.equals(mButtonChangePin2.getText())) { in updatePINChangeState() 403 mButtonChangePin2.setDialogMessage(getText(msgId) + "\n" + getText(strId)); in displayPinChangeDialog() 549 out.putString(DIALOG_PIN_ENTRY_KEY, mButtonChangePin2.getText()); in onSaveInstanceState()
|
D | EditFdnContactScreen.java | 274 return mNameField.getText().toString(); in getNameFromTextField() 278 return mNumberField.getText().toString(); in getNumberFromTextField() 321 showStatus(getResources().getText(R.string.adding_fdn_contact)); in addContact() 346 showStatus(getResources().getText(R.string.updating_fdn_contact)); in updateContact() 395 showStatus(getResources().getText(mAddContact ? in handleResult() 400 showStatus(getResources().getText(R.string.fdn_invalid_number)); in handleResult() 403 showStatus(getResources().getText(R.string.fdn_enable_puk2_requested)); in handleResult() 405 showStatus(getResources().getText(R.string.puk2_blocked)); in handleResult() 409 showStatus(getResources().getText(R.string.pin2_or_fdn_invalid)); in handleResult() 456 Selection.selectAll((Spannable) textView.getText());
|
/packages/apps/Dialer/java/com/android/dialer/calllogutils/ |
D | CallLogEntryText.java | 50 return context.getText(R.string.emergency_number); in buildPrimaryText() 77 return context.getText(R.string.new_call_log_unknown); in buildPrimaryText() 149 components.add(context.getText(R.string.new_call_log_secondary_blocked)); in buildSecondaryTextListForEntries() 152 components.add(context.getText(R.string.new_call_log_secondary_spam)); in buildSecondaryTextListForEntries() 208 components.add(context.getText(R.string.new_call_log_secondary_blocked)); in buildSecondaryTextForBottomSheet() 211 components.add(context.getText(R.string.new_call_log_secondary_spam)); in buildSecondaryTextForBottomSheet() 260 context.getText( in getNumberTypeLabel()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/security/ |
D | TopLevelSecurityPreferenceControllerTest.java | 66 verify(mContext).getText(R.string.security_dashboard_summary_face); in geSummary_hasFace_hasStaticSummary() 79 verify(mContext).getText(R.string.security_dashboard_summary); in geSummary_hasFingerPrint_hasStaticSummary() 91 verify(mContext).getText(R.string.security_dashboard_summary_no_fingerprint); in geSummary_noFpFeature_shouldSetSummaryWithNoBiometrics() 104 verify(mContext).getText(R.string.security_dashboard_summary_no_fingerprint); in geSummary_noFpHardware_shouldSetSummaryWithNoBiometrics() 116 verify(mContext).getText(R.string.security_dashboard_summary_no_fingerprint); in geSummary_noFaceFeature_shouldSetSummaryWithNoBiometrics() 129 verify(mContext).getText(R.string.security_dashboard_summary_no_fingerprint); in geSummary_noFaceHardware_shouldSetSummaryWithNoBiometrics()
|
/packages/apps/Launcher3/src/com/android/launcher3/accessibility/ |
D | LauncherAccessibilityDelegate.java | 83 launcher.getText(R.string.remove_drop_target_label))); in LauncherAccessibilityDelegate() 85 launcher.getText(R.string.uninstall_drop_target_label))); in LauncherAccessibilityDelegate() 87 launcher.getText(R.string.gadget_setup_text))); in LauncherAccessibilityDelegate() 89 launcher.getText(R.string.action_add_to_workspace))); in LauncherAccessibilityDelegate() 91 launcher.getText(R.string.action_move))); in LauncherAccessibilityDelegate() 93 launcher.getText(R.string.action_move_to_workspace))); in LauncherAccessibilityDelegate() 95 launcher.getText(R.string.action_resize))); in LauncherAccessibilityDelegate() 97 launcher.getText(R.string.action_deep_shortcut))); in LauncherAccessibilityDelegate() 99 launcher.getText(R.string.shortcuts_menu_with_notifications_description))); in LauncherAccessibilityDelegate() 103 mActions.put(action, new AccessibilityAction(action, mLauncher.getText(actionLabel))); in addAccessibilityAction() [all …]
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/wifi/calling/ |
D | ListWithEntrySummaryPreferenceTest.java | 72 assertThat(title.getText()).isEqualTo(mDefaultEntries[i]); in initialize_defaultEntries_shouldDisplayDefalutEntries() 73 assertThat(summary.getText()).isEqualTo(mDefaultEntrySummaries[i]); in initialize_defaultEntries_shouldDisplayDefalutEntries() 91 assertThat(title.getText()).isEqualTo(mCustomEntries[i]); in setEntries_customEntries_shouldUpdateEntries() 92 assertThat(summary.getText()).isEqualTo(mCustomEntrySummaries[i]); in setEntries_customEntries_shouldUpdateEntries() 116 assertThat(title.getText()).isEqualTo(mCustomEntries[i]); in onSaveAndRestoreInstanceState_resumePreference_shouldNotChangeEntries() 117 assertThat(summary.getText()).isEqualTo(mCustomEntrySummaries[i]); in onSaveAndRestoreInstanceState_resumePreference_shouldNotChangeEntries()
|