Home
last modified time | relevance | path

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

/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/prefs/
DPrefsBackupHelperTest.java44 private static final String LOCAL_PREFERENCE_1 = "rootViewMode-validPreference1"; field in PrefsBackupHelperTest
73 mDefaultPrefs.edit().putInt(LOCAL_PREFERENCE_1, 1).commit(); in testPrepareBackupFile_BackupLocalPreferences()
77 assertEquals(mBackupPrefs.getInt(LOCAL_PREFERENCE_1, 0), 1); in testPrepareBackupFile_BackupLocalPreferences()
101 mDefaultPrefs.edit().putString(LOCAL_PREFERENCE_1, "String is not accepted").commit(); in testPrepareBackupFile_BackupUnexpectedType()
109 assertFalse(mBackupPrefs.contains(LOCAL_PREFERENCE_1)); in testPrepareBackupFile_BackupUnexpectedType()
115 mBackupPrefs.edit().putInt(LOCAL_PREFERENCE_1, 1).commit(); in testRestorePreferences_RestoreLocalPreferences()
119 assertEquals(mDefaultPrefs.getInt(LOCAL_PREFERENCE_1, 0), 1); in testRestorePreferences_RestoreLocalPreferences()
146 editor.putInt(LOCAL_PREFERENCE_1, 1); in testEndToEnd()
166 assertEquals(mDefaultPrefs.getInt(LOCAL_PREFERENCE_1, 0), 1); in testEndToEnd()