[devkit] updating notification group test data

GitOrigin-RevId: 9a3332c5f8bb0a842e923cf83e16014968e81355
This commit is contained in:
Roman Shevchenko
2021-05-10 11:01:40 +00:00
committed by intellij-monorepo-bot
parent 9c768e9626
commit da59dcf960
2 changed files with 5 additions and 5 deletions
@@ -5,12 +5,12 @@ import com.intellij.notification.NotificationType;
public class NotificationGroupId {
public static void main(String[] args) {
new Notification("my.balloon", null, NotificationType.INFORMATION);
new Notification("my.balloon", "Content", NotificationType.INFORMATION);
new NotificationBuilder("my.balloon", "Content", NotificationType.WARNING);
NotificationGroupManager.getInstance().getNotificationGroup("my.balloon");
new Notification("<error descr="Cannot resolve notification group id 'INVALID_VALUE'">INVALID_VALUE</error>", null, NotificationType.INFORMATION);
new Notification("<error descr="Cannot resolve notification group id 'INVALID_VALUE'">INVALID_VALUE</error>", "Content", NotificationType.INFORMATION);
new NotificationBuilder("<error descr="Cannot resolve notification group id 'INVALID_VALUE'">INVALID_VALUE</error>", "Content", NotificationType.WARNING);
NotificationGroupManager.getInstance().getNotificationGroup("<error descr="Cannot resolve notification group id 'INVALID_VALUE'">INVALID_VALUE</error>");
}
}
}
@@ -3,6 +3,6 @@ import com.intellij.notification.NotificationType;
public class NotificationGroupIdCompletion {
public static void main(String[] args) {
new Notification("<caret>", null, NotificationType.INFORMATION);
new Notification("<caret>", "Content", NotificationType.INFORMATION);
}
}
}