mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
Displaying additional info from feedback db in test.
This commit is contained in:
parent
4b0374a31b
commit
10eb7955eb
1 changed files with 5 additions and 1 deletions
|
@ -35,9 +35,13 @@ public class EntityManagerTest {
|
|||
|
||||
List<Feedback> feedbackList = EntityManager.instance.getAllFeedbacks();
|
||||
System.out.println("feedbacks found: " + feedbackList.size());
|
||||
int count = 1;
|
||||
for (Feedback feedback : feedbackList) {
|
||||
System.out.println(feedback.toString());
|
||||
System.out.println(count + ". " + feedback.toString());
|
||||
System.out.println("message=" + feedback.getMessage());
|
||||
System.out.println("mail=" + feedback.getEmail());
|
||||
System.out.println("--------------");
|
||||
count++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue