sheet.addCell(new Label(goffset, offset, "Tests "+t));
offset++;
t++;
for(int i=0;i<test.getDocs().size();i++)
{
Input doc=test.getDocs().get(i);
ArrayList<Decision> decisions=test.getAnswers().get(i);
sheet.addCell(new Label(goffset, offset, "Document:"));
sheet.addCell(new Label(goffset+1, offset, doc.toString()));
offset++;
for(Decision decision:decisions)
{
if(decision.isAttempted())