Home | History | Annotate | Download | only in notification

Lines Matching refs:channel

89         NotificationChannel channel = mock(NotificationChannel.class);
90 when(channel.getImportance()).thenReturn(IMPORTANCE_NONE);
91 mController.onResume(appRow, channel, null, null);
98 NotificationChannel channel = mock(NotificationChannel.class);
99 when(channel.getImportance()).thenReturn(IMPORTANCE_LOW);
100 mController.onResume(appRow, channel, null, null);
115 NotificationChannel channel = mock(NotificationChannel.class);
116 when(channel.getImportance()).thenReturn(IMPORTANCE_LOW);
117 when(channel.getDescription()).thenReturn("AAA");
118 mController.onResume(appRow, channel, null, null);
135 NotificationChannel channel = mock(NotificationChannel.class);
136 when(channel.getImportance()).thenReturn(IMPORTANCE_LOW);
137 when(channel.getDescription()).thenReturn("AAA");
138 mController.onResume(appRow, channel, null, null);