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.java135 private List<AlertEntry> mAlertEntries; field in PreprocessingManagerTest
213 List<AlertEntry> unfiltered = mAlertEntries.stream().collect(Collectors.toList()); in onFilter_showLessImportantNotifications_doesNotFilterNotifications()
215 .filter(/* showLessImportantNotifications= */true, mAlertEntries, mRankingMap); in onFilter_showLessImportantNotifications_doesNotFilterNotifications()
217 assertThat(mAlertEntries.equals(unfiltered)).isTrue(); in onFilter_showLessImportantNotifications_doesNotFilterNotifications()
224 .filter( /* showLessImportantNotifications= */ false, mAlertEntries, mRankingMap); in onFilter_dontShowLessImportantNotifications_filtersLessImportantForeground()
226 assertThat(mAlertEntries.contains(mLessImportantBackground)).isTrue(); in onFilter_dontShowLessImportantNotifications_filtersLessImportantForeground()
227 assertThat(mAlertEntries.contains(mLessImportantForeground)).isFalse(); in onFilter_dontShowLessImportantNotifications_filtersLessImportantForeground()
233 .filter(/* showLessImportantNotifications= */false, mAlertEntries, mRankingMap); in onFilter_dontShowLessImportantNotifications_doesNotFilterMoreImportant()
235 assertThat(mAlertEntries.contains(mImportantBackground)).isTrue(); in onFilter_dontShowLessImportantNotifications_doesNotFilterMoreImportant()
236 assertThat(mAlertEntries.contains(mImportantForeground)).isTrue(); in onFilter_dontShowLessImportantNotifications_doesNotFilterMoreImportant()
[all …]