Searched refs:mAlertEntries (Results 1 – 1 of 1) sorted by relevance
135 private List<AlertEntry> mAlertEntries; field in PreprocessingManagerTest213 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 …]