Searched refs:accountsPref (Results 1 – 2 of 2) sorted by relevance
248 Preference accountsPref = findPreference(KEY_ACCOUNTS_AND_SIGN_IN); in onCreatePreferences() local249 if (accountsPref != null) { in onCreatePreferences()250 accountsPref.setVisible(false); in onCreatePreferences()484 Preference accountsPref = findPreference(KEY_ACCOUNTS_AND_SIGN_IN); in updateAccountPref() local499 if (accountsPref != null) { in updateAccountPref()500 accountsPref.setVisible(true); in updateAccountPref()508 if (accountsPref != null) { in updateAccountPref()509 accountsPref.setVisible(false); in updateAccountPref()517 if (accountsPref != null) { in updateAccountPref()518 accountsPref.setVisible(true); in updateAccountPref()[all …]
235 final Preference accountsPref = mock(Preference.class); in testUpdateAccountPrefInfo_hasOneAccount() local236 doReturn(accountsPref).when(mMainFragment) in testUpdateAccountPrefInfo_hasOneAccount()238 doReturn(true).when(accountsPref).isVisible(); in testUpdateAccountPrefInfo_hasOneAccount()244 verify(accountsPref, atLeastOnce()).setIcon(R.drawable.ic_accounts_and_sign_in); in testUpdateAccountPrefInfo_hasOneAccount()245 verify(accountsPref, atLeastOnce()).setSummary("test"); in testUpdateAccountPrefInfo_hasOneAccount()251 final Preference accountsPref = mock(Preference.class); in testUpdateAccountPrefInfo_hasNoAccount() local252 doReturn(accountsPref).when(mMainFragment) in testUpdateAccountPrefInfo_hasNoAccount()254 doReturn(true).when(accountsPref).isVisible(); in testUpdateAccountPrefInfo_hasNoAccount()258 verify(accountsPref, atLeastOnce()).setIcon(R.drawable.ic_add_an_account); in testUpdateAccountPrefInfo_hasNoAccount()259 verify(accountsPref, atLeastOnce()) in testUpdateAccountPrefInfo_hasNoAccount()[all …]