}
}
@Test
public void testGetByUser() {
Notification notification;
try {
List<Notification> notifications = client.getNotifications().getByUser(props.getProperty("TRELLO_MEMBER"));
Iterator<Notification> iterator = notifications.iterator();
while (iterator.hasNext()) {
notification = iterator.next();
System.out.println("DEBUG notification=" + notification.toString());
}
} catch (TrelloApiBaseException e) {
e.printStackTrace();
fail();
}