Home
last modified time | relevance | path

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

/cts/tests/tests/notification/src/android/app/notification/current/cts/
DNotificationManagerTest.java531 final NotificationChannelGroup ncg = new NotificationChannelGroup("a group", "a label"); in testCreateChannelGroup() local
534 channel.setGroup(ncg.getId()); in testCreateChannelGroup()
535 mNotificationManager.createNotificationChannelGroup(ncg); in testCreateChannelGroup()
545 assertEquals(ncg.getName(), ncgs.get(0).getName().toString()); in testCreateChannelGroup()
546 assertEquals(ncg.getDescription(), ncgs.get(0).getDescription()); in testCreateChannelGroup()
549 mNotificationManager.deleteNotificationChannelGroup(ncg.getId()); in testCreateChannelGroup()
555 final NotificationChannelGroup ncg = new NotificationChannelGroup("a group", "a label"); in testGetChannelGroup() local
556 ncg.setDescription("bananas"); in testGetChannelGroup()
560 channel.setGroup(ncg.getId()); in testGetChannelGroup()
562 mNotificationManager.createNotificationChannelGroup(ncg); in testGetChannelGroup()
[all …]
DBaseNotificationManagerTest.java171 for (NotificationChannelGroup ncg : groups) { in baseTearDown()
172 mNotificationManager.deleteNotificationChannelGroup(ncg.getId()); in baseTearDown()