Home
last modified time | relevance | path

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

/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/
DLauncherPrefsTest.kt190 val bootAwareItem = in put_bootAwareItem_updatesDeviceProtectedStorage() constant
201 bootAwarePrefs.edit().remove(bootAwareItem.sharedPrefKey).commit() in put_bootAwareItem_updatesDeviceProtectedStorage()
203 launcherPrefs.putSync(bootAwareItem.to(bootAwareItem.defaultValue)) in put_bootAwareItem_updatesDeviceProtectedStorage()
204 assertThat(bootAwarePrefs.contains(bootAwareItem.sharedPrefKey)).isTrue() in put_bootAwareItem_updatesDeviceProtectedStorage()
206 launcherPrefs.removeSync(bootAwareItem) in put_bootAwareItem_updatesDeviceProtectedStorage()
211 val bootAwareItem = in remove_bootAwareItem_removesFromDeviceProtectedStorage() constant
225 .putString(bootAwareItem.sharedPrefKey, bootAwareItem.defaultValue) in remove_bootAwareItem_removesFromDeviceProtectedStorage()
228 launcherPrefs.removeSync(bootAwareItem) in remove_bootAwareItem_removesFromDeviceProtectedStorage()
229 assertThat(bootAwarePrefs.contains(bootAwareItem.sharedPrefKey)).isFalse() in remove_bootAwareItem_removesFromDeviceProtectedStorage()