Cell cellA5 = row5.getCell(0);
Cell cellA6 = row6.getCell(0);
Cell cellA7 = row7.getCell(0);
// BookHelper.evaluate((Book)_workbook, cellA2);
Hyperlink hlinkA1 = Utils.getHyperlink(cellA1);
Hyperlink hlinkA2 = Utils.getHyperlink(cellA2);
Hyperlink hlinkA3 = Utils.getHyperlink(cellA3);
Hyperlink hlinkA4 = Utils.getHyperlink(cellA4);
Hyperlink hlinkA5 = Utils.getHyperlink(cellA5);
Hyperlink hlinkA6 = Utils.getHyperlink(cellA6);
Hyperlink hlinkA7 = Utils.getHyperlink(cellA7);
String textA1 = BookHelper.getCellText(cellA1);
String textA2 = BookHelper.getCellText(cellA2);
String textA3 = BookHelper.getCellText(cellA3);
String textA4 = BookHelper.getCellText(cellA4);
String textA5 = BookHelper.getCellText(cellA5);
String textA6 = BookHelper.getCellText(cellA6);
String textA7 = BookHelper.getCellText(cellA7);
String stringA1 = Utils.formatHyperlink(sheet1, hlinkA1, textA1, true);
String stringA2 = Utils.formatHyperlink(sheet1, hlinkA2, textA2, true);
String stringA3 = Utils.formatHyperlink(sheet1, hlinkA3, textA3, true);
String stringA4 = Utils.formatHyperlink(sheet1, hlinkA4, textA4, true);
String stringA5 = Utils.formatHyperlink(sheet1, hlinkA5, textA5, true);
String stringA6 = Utils.formatHyperlink(sheet1, hlinkA6, textA6, true);
String stringA7 = Utils.formatHyperlink(sheet1, hlinkA7, textA7, true);
String head = "<a z.t=\"";
String href = "\" href=\"";
String mid = "\">";
String tail = "</a>";
assertEquals(head+hlinkA1.getType()+href+hlinkA1.getAddress()+mid+textA1+tail, stringA1);
assertEquals(head+hlinkA2.getType()+href+hlinkA2.getAddress()+mid+textA2+tail, stringA2);
assertEquals(head+hlinkA3.getType()+href+hlinkA3.getAddress()+mid+textA3+tail, stringA3);
assertEquals(head+hlinkA4.getType()+href+hlinkA4.getAddress()+mid+textA4+tail, stringA4);
assertEquals(head+hlinkA5.getType()+href+hlinkA5.getAddress()+mid+textA5+tail, stringA5);
assertEquals(head+hlinkA6.getType()+href+hlinkA6.getAddress()+mid+textA6+tail, stringA6);
assertEquals(head+hlinkA7.getType()+href+hlinkA7.getAddress()+mid+textA7+tail, stringA7);
}