OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:channelGroupId
(Results
1 - 2
of
2
) sorted by null
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowNotificationManager.java
154
protected void deleteNotificationChannelGroup(String
channelGroupId
) {
155
if (getNotificationChannelGroup(
channelGroupId
) != null) {
161
if (
channelGroupId
.equals(groupId)) {
166
notificationChannelGroups.remove(
channelGroupId
);
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowNotificationManagerTest.java
130
final String
channelGroupId
= "
channelGroupId
";
132
new NotificationChannelGroup(
channelGroupId
, "groupName"));
134
channel.setGroup(
channelGroupId
);
137
notificationManager.deleteNotificationChannelGroup(
channelGroupId
);
138
assertThat(shadowOf(notificationManager).getNotificationChannelGroup(
channelGroupId
)).isNull();
Completed in 529 milliseconds