Searched refs:accountsPref (Results 1 – 2 of 2) sorted by relevance
192 Preference accountsPref = findPreference(KEY_ACCOUNTS_AND_SIGN_IN); in onCreatePreferences() local193 if (accountsPref != null) { in onCreatePreferences()194 accountsPref.setVisible(false); in onCreatePreferences()424 Preference accountsPref = findPreference(KEY_ACCOUNTS_AND_SIGN_IN); in updateAccountPref() local439 if (accountsPref != null) { in updateAccountPref()440 accountsPref.setVisible(true); in updateAccountPref()448 if (accountsPref != null) { in updateAccountPref()449 accountsPref.setVisible(false); in updateAccountPref()457 if (accountsPref != null) { in updateAccountPref()458 accountsPref.setVisible(true); in updateAccountPref()[all …]
229 final Preference accountsPref = mock(Preference.class); in testUpdateAccountPrefInfo_hasOneAccount() local230 doReturn(accountsPref).when(mMainFragment) in testUpdateAccountPrefInfo_hasOneAccount()232 doReturn(true).when(accountsPref).isVisible(); in testUpdateAccountPrefInfo_hasOneAccount()238 verify(accountsPref, atLeastOnce()).setIcon(R.drawable.ic_accounts_and_sign_in); in testUpdateAccountPrefInfo_hasOneAccount()239 verify(accountsPref, atLeastOnce()).setSummary("test"); in testUpdateAccountPrefInfo_hasOneAccount()245 final Preference accountsPref = mock(Preference.class); in testUpdateAccountPrefInfo_hasNoAccount() local246 doReturn(accountsPref).when(mMainFragment) in testUpdateAccountPrefInfo_hasNoAccount()248 doReturn(true).when(accountsPref).isVisible(); in testUpdateAccountPrefInfo_hasNoAccount()252 verify(accountsPref, atLeastOnce()).setIcon(R.drawable.ic_add_an_account); in testUpdateAccountPrefInfo_hasNoAccount()253 verify(accountsPref, atLeastOnce()) in testUpdateAccountPrefInfo_hasNoAccount()[all …]