repo.setReview(deathStar, bob, 8, "", true);
repo.setReview(foomatic, chris, -10, "No no good for me, I don't need nobody", false);
repo.setReview(deathStar, vader, 7, "Schnippdischnappdi", true);
repo.commit();
// Hack: there is a strange behavior from Hibernate to crash if setting a review to rejected and then getting another one from the DB
Review r1 = repo.getReview(helloWorld.getName(), helloWorld.getBranch(), alice);
Review r2 = repo.getReview(deathStar.getName(), deathStar.getBranch(), alice);
r1.setReject(bob, "");
r2.setReject(bob, "no comment on this");
repo.commit();
}