mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08: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…
Add table
Add a link
Reference in a new issue