Home | History | Annotate | Download | only in notification

Lines Matching refs:channel

90         NotificationChannel channel = mock(NotificationChannel.class);
91 when(channel.getImportance()).thenReturn(IMPORTANCE_NONE);
92 mController.onResume(appRow, channel, null, null);
99 NotificationChannel channel = mock(NotificationChannel.class);
100 when(channel.getImportance()).thenReturn(IMPORTANCE_LOW);
101 when(channel.getId()).thenReturn(DEFAULT_CHANNEL_ID);
102 mController.onResume(appRow, channel, null, null);
110 NotificationChannel channel = mock(NotificationChannel.class);
111 when(channel.getImportance()).thenReturn(IMPORTANCE_LOW);
112 when(channel.getId()).thenReturn(DEFAULT_CHANNEL_ID);
113 mController.onResume(appRow, channel, null, null);