Home
last modified time | relevance | path

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

/packages/apps/Car/Notification/tests/unit/src/com/android/car/notification/
DPreprocessingManagerTest.java166 private List<AlertEntry> mAlertEntries; field in PreprocessingManagerTest
270 List<AlertEntry> unfiltered = mAlertEntries.stream().collect(Collectors.toList()); in onFilter_showLessImportantNotifications_doesNotFilterNotifications()
272 .filter(/* showLessImportantNotifications= */ true, mAlertEntries, mRankingMap); in onFilter_showLessImportantNotifications_doesNotFilterNotifications()
274 assertThat(mAlertEntries.equals(unfiltered)).isTrue(); in onFilter_showLessImportantNotifications_doesNotFilterNotifications()
281 .filter( /* showLessImportantNotifications= */ false, mAlertEntries, mRankingMap); in onFilter_dontShowLessImportantNotifications_filtersLessImportantForeground()
283 assertThat(mAlertEntries.contains(mLessImportantBackground)).isTrue(); in onFilter_dontShowLessImportantNotifications_filtersLessImportantForeground()
284 assertThat(mAlertEntries.contains(mLessImportantForeground)).isFalse(); in onFilter_dontShowLessImportantNotifications_filtersLessImportantForeground()
290 .filter(/* showLessImportantNotifications= */ false, mAlertEntries, mRankingMap); in onFilter_dontShowLessImportantNotifications_doesNotFilterMoreImportant()
292 assertThat(mAlertEntries.contains(mImportantBackground)).isTrue(); in onFilter_dontShowLessImportantNotifications_doesNotFilterMoreImportant()
293 assertThat(mAlertEntries.contains(mImportantForeground)).isTrue(); in onFilter_dontShowLessImportantNotifications_doesNotFilterMoreImportant()
[all …]