// TODO Implement since
DataManager dataManager = getDataManager();
try {
VerifiedAccount account = dataManager
.getVerifiedAccount(emailAddress);
Report report = new Report();
report.setTimestamp(new Date());
report.setOpenTests(Lists.newLinkedList(dataManager.getOpenTests(account)));
report.setClosedTests(Lists.newLinkedList(dataManager.getClosedTests(account)));
return Response.ok(report).type(MediaType.APPLICATION_JSON).build();
} catch (UnknownVerifiedAccountException e) {
throw new WebApplicationException(Response
.status(Status.NOT_FOUND)
.entity("No account '" + emailAddress.getAddress()