*
* @throws Exception if problems occur.
*/
protected void setUp() throws Exception {
super.setUp();
codeReviews.add(new ReviewIssue(new Date(), new Date(), "fooReviewer", "fooRespondent",
"doc/review/foo/bar/Baz.java", "10", praise, major,
"This is summary.", "This is nice method!", "This is annotation for review.",
"This is revision comment.", validFixlater, unresolved, null));
codeReviews.add(new ReviewIssue(new Date(), new Date(), "barReviewer", "barRespondent",
"doc/review/bar/baz/Foo.java", "20", defect, minor,
"This is summary.", "Should throw Exception.", "This is annotation for review.",
"This is revision comment.", validNeedsfixing, resolved, null));
codeReviews.add(new ReviewIssue(new Date(), new Date(), "bazReviewer", "bazRespondent",
"doc/review/baz/foo/Bar.java", "30", question, trivial,
"This is summary", "is this method needed?", "This is annotation for review.",
"This is revision comment.", unset, unresolved, null));
}