Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
H A DNotificationHistoryProtoHelperTest.java138 Set<String> expectedStrings = new HashSet<>(); in testReadNotificationsWithPkgFilter() local
145 expectedStrings.add(n.getPackage()); in testReadNotificationsWithPkgFilter()
147 expectedStrings.add(n.getChannelId()); in testReadNotificationsWithPkgFilter()
187 expectedStrings.add(n.getPackage()); in testReadNotificationsWithNumberFilter()
239 expectedStrings.add(n.getPackage()); in testReadNotificationsWithNumberFilter_preExistingNotifs()
279 expectedStrings.add(n.getPackage()); in testReadMergeIntoExistingHistory()
280 expectedStrings.add(n.getChannelName()); in testReadMergeIntoExistingHistory()
281 expectedStrings.add(n.getChannelId()); in testReadMergeIntoExistingHistory()
297 expectedStrings.add(n.getPackage()); in testReadMergeIntoExistingHistory()
298 expectedStrings.add(n.getChannelName()); in testReadMergeIntoExistingHistory()
[all …]
/aosp12/frameworks/base/core/tests/coretests/src/android/app/
H A DNotificationHistoryTest.java161 List<String> expectedStrings = new ArrayList<>(); in testPoolStringsFromNotifications() local
164 expectedStrings.add(n.getPackage()); in testPoolStringsFromNotifications()
165 expectedStrings.add(n.getChannelName()); in testPoolStringsFromNotifications()
166 expectedStrings.add(n.getChannelId()); in testPoolStringsFromNotifications()
178 assertThat(expectedStrings).contains(actual); in testPoolStringsFromNotifications()
191 List<String> expectedStrings = new ArrayList<>(); in testAddPooledStrings() local
194 expectedStrings.add(n.getPackage()); in testAddPooledStrings()
195 expectedStrings.add(n.getChannelName()); in testAddPooledStrings()
196 expectedStrings.add(n.getChannelId()); in testAddPooledStrings()
203 history.addPooledStrings(expectedStrings); in testAddPooledStrings()
[all …]
/aosp12/frameworks/base/core/tests/coretests/src/android/text/
H A DTextUtilsTest.java232 private void stringSplitterTestHelper(String string, String[] expectedStrings) { in stringSplitterTestHelper() argument
239 MoreAsserts.assertEquals(expectedStrings, strings.toArray(new String[]{})); in stringSplitterTestHelper()