Searched refs:LOCAL_PREFERENCE_1 (Results 1 – 1 of 1) sorted by relevance
/aosp12/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/prefs/ |
H A D | PrefsBackupHelperTest.java | 44 private static final String LOCAL_PREFERENCE_1 = "rootViewMode-validPreference1"; field in PrefsBackupHelperTest 72 mDefaultPrefs.edit().putInt(LOCAL_PREFERENCE_1, 1).commit(); in testPrepareBackupFile_BackupLocalPreferences() 76 assertEquals(mBackupPrefs.getInt(LOCAL_PREFERENCE_1, 0), 1); in testPrepareBackupFile_BackupLocalPreferences() 91 mDefaultPrefs.edit().putString(LOCAL_PREFERENCE_1, "String is not accepted").commit(); in testPrepareBackupFile_BackupUnexpectedType() 99 assertFalse(mBackupPrefs.contains(LOCAL_PREFERENCE_1)); in testPrepareBackupFile_BackupUnexpectedType() 105 mBackupPrefs.edit().putInt(LOCAL_PREFERENCE_1, 1).commit(); in testRestorePreferences_RestoreLocalPreferences() 109 assertEquals(mDefaultPrefs.getInt(LOCAL_PREFERENCE_1, 0), 1); in testRestorePreferences_RestoreLocalPreferences() 127 editor.putInt(LOCAL_PREFERENCE_1, 1); in testEndToEnd() 146 assertEquals(mDefaultPrefs.getInt(LOCAL_PREFERENCE_1, 0), 1); in testEndToEnd()
|