From 3b921b7b58fbab12a3b8c57c4e6e16da07d274d4 Mon Sep 17 00:00:00 2001 From: Steve Schafer Date: Thu, 22 Apr 2021 16:15:40 -0600 Subject: [PATCH] POI Vulnerabilities #642 Update POI plugins to version 4.1.1 and add dependent plugins. Signed-off-by: Steve Schafer --- .../externalRepo.properties | 3 - .../org.eclipse.birt.target.target | 13 +- .../META-INF/MANIFEST.MF | 6 +- .../oda/excel/impl/util/ExcelFileReader.java | 14 +- .../META-INF/MANIFEST.MF | 4 +- .../META-INF/MANIFEST.MF | 8 +- .../excel/tests/Borders1ReportTest.java | 115 +- .../excel/tests/Borders2ReportTest.java | 11 +- .../excel/tests/Borders3ReportTest.java | 1685 ++++++++--------- .../excel/tests/Borders4ReportTest.java | 11 +- .../birt/emitters/excel/tests/GridsTests.java | 5 +- .../emitters/excel/tests/HyperlinksTest.java | 8 +- .../birt/emitters/excel/tests/Issue27.java | 5 +- .../excel/tests/Issue56FreezePanes.java | 2 +- .../excel/tests/SimpleTableReportTest.java | 4 +- .../META-INF/MANIFEST.MF | 10 +- .../birt/emitters/excel/FilteredSheet.java | 121 +- .../birt/emitters/excel/FontManager.java | 12 +- .../birt/emitters/excel/StyleManager.java | 17 +- .../emitters/excel/StyleManagerHUtils.java | 37 +- .../emitters/excel/StyleManagerUtils.java | 30 +- .../emitters/excel/StyleManagerXUtils.java | 13 +- .../excel/handlers/CellContentHandler.java | 10 +- .../emitters/excel/handlers/PageHandler.java | 7 +- .../handlers/TopLevelContentHandler.java | 12 +- releng/maps/orbit_bundles.map | 12 +- .../birt/WEB-INF/web.xml | 256 +-- 27 files changed, 1287 insertions(+), 1144 deletions(-) diff --git a/build/org.eclipse.birt.build/externalRepo.properties b/build/org.eclipse.birt.build/externalRepo.properties index 954f6f16111..7a5016b3fdb 100644 --- a/build/org.eclipse.birt.build/externalRepo.properties +++ b/build/org.eclipse.birt.build/externalRepo.properties @@ -8,9 +8,6 @@ com.lowagie.text_2.1.7.v201004222200.jar, org.eclipse.birt.runtime.3_7_1, com.lo derby.jar, org.eclipse.birt.runtime.3_7_1, derby, 10.5.1000001 js.jar, org.eclipse.birt.runtime.3_7_1, org.mozilla.javascript, 1.7.2 javax.wsdl_1.5.1.v201012040544.jar, org.eclipse.birt.runtime.3_7_1, javax.wsdl, 1.5.1 -poi-3.9.jar, org.apache.poi, poi, 3.9 -poi-ooxml-3.9.jar, org.apache.poi, poi-ooxml, 3.9 -poi-ooxml-schemas-3.9.jar, org.apache.poi, poi-ooxml-schemas, 3.9 #dom4j-1.6.1.jar, dom4j, dom4j, 1.6.1 #xmlbeans-2.3.0.jar, org.apache.xmlbeans, xmlbeans, 2.3.0 #commons-codec-1.3.jar, commons-codec, commons-codec, 1.3 diff --git a/build/org.eclipse.birt.target/org.eclipse.birt.target.target b/build/org.eclipse.birt.target/org.eclipse.birt.target.target index 910bd408182..4bbfa5d1496 100644 --- a/build/org.eclipse.birt.target/org.eclipse.birt.target.target +++ b/build/org.eclipse.birt.target/org.eclipse.birt.target.target @@ -102,13 +102,18 @@ - - - - + + + + + + + + + diff --git a/data/org.eclipse.birt.report.data.oda.excel/META-INF/MANIFEST.MF b/data/org.eclipse.birt.report.data.oda.excel/META-INF/MANIFEST.MF index 65b758877f2..f7a172e2bc8 100644 --- a/data/org.eclipse.birt.report.data.oda.excel/META-INF/MANIFEST.MF +++ b/data/org.eclipse.birt.report.data.oda.excel/META-INF/MANIFEST.MF @@ -17,9 +17,9 @@ Require-Bundle: org.eclipse.core.runtime, org.apache.xml.serializer;bundle-version="[2.7.1,3.0.0)", org.apache.commons.logging;bundle-version="[1.0.4,2.0.0)";resolution:=optional, javax.xml.stream;bundle-version="[1.0.1,2.0.0)";resolution:=optional, - org.apache.poi;bundle-version="[3.9.0,4.0.0)", - org.apache.poi.ooxml;bundle-version="[3.9.0,4.0.0)", - org.apache.poi.ooxml.schemas;bundle-version="[3.9.0,4.0.0)", + org.apache.poi;bundle-version="[4.1.1,5.0.0)", + org.apache.poi.ooxml;bundle-version="[4.1.1,5.0.0)", + org.apache.poi.ooxml.schemas;bundle-version="[4.1.1,5.0.0)", org.apache.xerces;bundle-version="2.9.0", org.eclipse.birt.core;bundle-version="4.9.0" Bundle-RequiredExecutionEnvironment: JavaSE-1.8 diff --git a/data/org.eclipse.birt.report.data.oda.excel/src/org/eclipse/birt/report/data/oda/excel/impl/util/ExcelFileReader.java b/data/org.eclipse.birt.report.data.oda.excel/src/org/eclipse/birt/report/data/oda/excel/impl/util/ExcelFileReader.java index 39f53e708fa..2371776a6b5 100644 --- a/data/org.eclipse.birt.report.data.oda.excel/src/org/eclipse/birt/report/data/oda/excel/impl/util/ExcelFileReader.java +++ b/data/org.eclipse.birt.report.data.oda.excel/src/org/eclipse/birt/report/data/oda/excel/impl/util/ExcelFileReader.java @@ -29,8 +29,10 @@ import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.openxml4j.exceptions.OpenXML4JException; import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.CellType; import org.apache.poi.ss.usermodel.FormulaEvaluator; import org.apache.poi.ss.usermodel.Row; +import org.apache.poi.ss.usermodel.Row.MissingCellPolicy; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.ss.usermodel.Workbook; import org.eclipse.birt.report.data.oda.excel.ExcelODAConstants; @@ -167,7 +169,7 @@ private void initialise() throws IOException, OdaException { workBook = new HSSFWorkbook(fis); } formulaEvaluator = workBook.getCreationHelper().createFormulaEvaluator(); - workBook.setMissingCellPolicy(Row.RETURN_NULL_AND_BLANK); + workBook.setMissingCellPolicy(MissingCellPolicy.RETURN_NULL_AND_BLANK /* Row.RETURN_NULL_AND_BLANK */); sheet = workBook.getSheet(workSheetList.get(currentSheetIndex)); if (sheet == null) throw new OdaException(Messages.getString("invalid_sheet_name")); @@ -262,11 +264,11 @@ public String getCellValue(Cell cell) { if (cell == null) return ExcelODAConstants.EMPTY_STRING; - if (cell.getCellType() == Cell.CELL_TYPE_FORMULA) { + if (cell.getCellType() == CellType.FORMULA /* Cell.CELL_TYPE_FORMULA */) { return resolveFormula(cell); } - if (cell.getCellType() == Cell.CELL_TYPE_NUMERIC) { + if (cell.getCellType() == CellType.NUMERIC /* Cell.CELL_TYPE_NUMERIC */) { if (HSSFDateUtil.isCellDateFormatted(cell)) { Date myjavadate = HSSFDateUtil.getJavaDate(cell.getNumericCellValue()); return sdf.format(myjavadate); @@ -281,10 +283,10 @@ private String resolveFormula(Cell cell) { if (formulaEvaluator == null) return cell.toString(); switch (formulaEvaluator.evaluateFormulaCell(cell)) { - case Cell.CELL_TYPE_BOOLEAN: + case BOOLEAN /* Cell.CELL_TYPE_BOOLEAN */: return ((Boolean) cell.getBooleanCellValue()).toString(); - case Cell.CELL_TYPE_NUMERIC: + case NUMERIC /* Cell.CELL_TYPE_NUMERIC */: if (org.apache.poi.ss.usermodel.DateUtil.isCellDateFormatted(cell)) { // need to check for nulls // double myexdate = @@ -294,7 +296,7 @@ private String resolveFormula(Cell cell) { } return ((Double) cell.getNumericCellValue()).toString(); - case Cell.CELL_TYPE_STRING: + case STRING /* Cell.CELL_TYPE_STRING */: return cell.getStringCellValue(); default: diff --git a/engine/org.eclipse.birt.report.engine.emitter.pptx.tests/META-INF/MANIFEST.MF b/engine/org.eclipse.birt.report.engine.emitter.pptx.tests/META-INF/MANIFEST.MF index 4aca390f2bc..e9abbedb52a 100644 --- a/engine/org.eclipse.birt.report.engine.emitter.pptx.tests/META-INF/MANIFEST.MF +++ b/engine/org.eclipse.birt.report.engine.emitter.pptx.tests/META-INF/MANIFEST.MF @@ -6,8 +6,8 @@ Bundle-Version: 4.9.0.qualifier Require-Bundle: org.eclipse.birt.report.engine;bundle-version="4.2.3", org.eclipse.birt.report.engine.emitter.pptx;bundle-version="4.5.0", org.junit, - org.apache.poi;bundle-version="[3.9.0,4.0.0)", - org.apache.poi.ooxml;bundle-version="[3.9.0,4.0.0)" + org.apache.poi;bundle-version="[4.1.1,5.0.0)", + org.apache.poi.ooxml;bundle-version="[4.1.1,5.0.0)" Bundle-ClassPath: . Automatic-Module-Name: org.eclipse.birt.report.engine.emitter.pptx.tests Bundle-RequiredExecutionEnvironment: JavaSE-1.8 diff --git a/engine/uk.co.spudsoft.birt.emitters.excel.tests/META-INF/MANIFEST.MF b/engine/uk.co.spudsoft.birt.emitters.excel.tests/META-INF/MANIFEST.MF index f0135e3baa9..31a9e3acfda 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel.tests/META-INF/MANIFEST.MF +++ b/engine/uk.co.spudsoft.birt.emitters.excel.tests/META-INF/MANIFEST.MF @@ -9,13 +9,13 @@ Require-Bundle: org.eclipse.core.runtime, org.junit, org.eclipse.birt.report.engine, com.ibm.icu;bundle-version="4.4.2", - org.apache.poi;bundle-version="[3.9.0,4.0.0)", - org.apache.poi.ooxml;bundle-version="[3.9.0,4.0.0)", - org.apache.poi.ooxml.schemas;bundle-version="[3.9.0,4.0.0)" + org.apache.poi;bundle-version="[4.1.1,5.0.0)", + org.apache.poi.ooxml;bundle-version="[4.1.1,5.0.0)", + org.apache.poi.ooxml.schemas;bundle-version="[4.1.1,5.0.0)" Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Bundle-ActivationPolicy: lazy Bundle-ClassPath: ., lib/commons-codec-1.5.jar -Import-Package: uk.co.spudsoft.birt.emitters.excel +Import-Package: uk.co.spudsoft.birt.emitters.excel, org.apache.xmlbeans Eclipse-BundleShape: dir Automatic-Module-Name: uk.co.spudsoft.birt.emitters.excel.tests diff --git a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders1ReportTest.java b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders1ReportTest.java index 32fa0413936..84d1df89a85 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders1ReportTest.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders1ReportTest.java @@ -20,6 +20,7 @@ import java.io.InputStream; import org.apache.poi.hssf.usermodel.HSSFWorkbook; +import org.apache.poi.ss.usermodel.BorderStyle; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.Sheet; @@ -30,8 +31,8 @@ public class Borders1ReportTest extends ReportRunner { - private void assertSingleBorder(Sheet sheet, int row, String border, short expected, short actual) { - if ((expected == CellStyle.BORDER_DOTTED) && (actual == CellStyle.BORDER_HAIR) + private void assertSingleBorder(Sheet sheet, int row, String border, BorderStyle expected, BorderStyle actual) { + if (BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */.equals(expected) && BorderStyle.HAIR /* CellStyle.BORDER_HAIR */.equals(actual) && (sheet instanceof XSSFSheet)) { // Hopefully a temporary fudge to work around what is believe to be a bug in POI return; @@ -42,7 +43,7 @@ private void assertSingleBorder(Sheet sheet, int row, String border, short expec assertEquals("Row " + row + ", border \"" + border + "\": ", expected, actual); } - private void assertBorder(Sheet sheet, int row, int col, short bottom, short left, short right, short top) { + private void assertBorder(Sheet sheet, int row, int col, BorderStyle bottom, BorderStyle left, BorderStyle right, BorderStyle top) { Cell cell = sheet.getRow(row).getCell(col); CellStyle style = cell.getCellStyle(); @@ -70,33 +71,33 @@ public void testRunReport() throws BirtException, IOException { assertEquals(12, firstNullRow(sheet)); int i = 0; - assertBorder(sheet, i++, 0, CellStyle.BORDER_THIN, CellStyle.BORDER_THIN, CellStyle.BORDER_THIN, - CellStyle.BORDER_THIN); - assertBorder(sheet, i++, 0, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM); - assertBorder(sheet, i++, 0, CellStyle.BORDER_THICK, CellStyle.BORDER_THICK, CellStyle.BORDER_THICK, - CellStyle.BORDER_THICK); - - assertBorder(sheet, i++, 0, CellStyle.BORDER_DOTTED, CellStyle.BORDER_DOTTED, CellStyle.BORDER_DOTTED, - CellStyle.BORDER_DOTTED); - assertBorder(sheet, i++, 0, CellStyle.BORDER_DOTTED, CellStyle.BORDER_DOTTED, CellStyle.BORDER_DOTTED, - CellStyle.BORDER_DOTTED); - assertBorder(sheet, i++, 0, CellStyle.BORDER_DOTTED, CellStyle.BORDER_DOTTED, CellStyle.BORDER_DOTTED, - CellStyle.BORDER_DOTTED); - - assertBorder(sheet, i++, 0, CellStyle.BORDER_DASHED, CellStyle.BORDER_DASHED, CellStyle.BORDER_DASHED, - CellStyle.BORDER_DASHED); - assertBorder(sheet, i++, 0, CellStyle.BORDER_MEDIUM_DASHED, CellStyle.BORDER_MEDIUM_DASHED, - CellStyle.BORDER_MEDIUM_DASHED, CellStyle.BORDER_MEDIUM_DASHED); - assertBorder(sheet, i++, 0, CellStyle.BORDER_MEDIUM_DASHED, CellStyle.BORDER_MEDIUM_DASHED, - CellStyle.BORDER_MEDIUM_DASHED, CellStyle.BORDER_MEDIUM_DASHED); - - assertBorder(sheet, i++, 0, CellStyle.BORDER_DOUBLE, CellStyle.BORDER_DOUBLE, CellStyle.BORDER_DOUBLE, - CellStyle.BORDER_DOUBLE); - assertBorder(sheet, i++, 0, CellStyle.BORDER_DOUBLE, CellStyle.BORDER_DOUBLE, CellStyle.BORDER_DOUBLE, - CellStyle.BORDER_DOUBLE); - assertBorder(sheet, i++, 0, CellStyle.BORDER_DOUBLE, CellStyle.BORDER_DOUBLE, CellStyle.BORDER_DOUBLE, - CellStyle.BORDER_DOUBLE); + assertBorder(sheet, i++, 0, BorderStyle.THIN /* CellStyle.BORDER_THIN */, BorderStyle.THIN /* CellStyle.BORDER_THIN */, BorderStyle.THIN /* CellStyle.BORDER_THIN */, + BorderStyle.THIN /* CellStyle.BORDER_THIN */); + assertBorder(sheet, i++, 0, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + assertBorder(sheet, i++, 0, BorderStyle.THICK /* CellStyle.BORDER_THICK */, BorderStyle.THICK /* CellStyle.BORDER_THICK */, BorderStyle.THICK /* CellStyle.BORDER_THICK */, + BorderStyle.THICK /* CellStyle.BORDER_THICK */); + + assertBorder(sheet, i++, 0, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, + BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */); + assertBorder(sheet, i++, 0, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, + BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */); + assertBorder(sheet, i++, 0, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, + BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */); + + assertBorder(sheet, i++, 0, BorderStyle.DASHED /* CellStyle.BORDER_DASHED */, BorderStyle.DASHED /* CellStyle.BORDER_DASHED */, BorderStyle.DASHED /* CellStyle.BORDER_DASHED */, + BorderStyle.DASHED /* CellStyle.BORDER_DASHED */); + assertBorder(sheet, i++, 0, BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */, BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */, + BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */, BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */); + assertBorder(sheet, i++, 0, BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */, BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */, + BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */, BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */); + + assertBorder(sheet, i++, 0, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, + BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */); + assertBorder(sheet, i++, 0, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, + BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */); + assertBorder(sheet, i++, 0, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, + BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */); } finally { inputStream.close(); @@ -120,33 +121,33 @@ public void testRunReportXls() throws BirtException, IOException { assertEquals(12, firstNullRow(sheet)); int i = 0; - assertBorder(sheet, i++, 0, CellStyle.BORDER_THIN, CellStyle.BORDER_THIN, CellStyle.BORDER_THIN, - CellStyle.BORDER_THIN); - assertBorder(sheet, i++, 0, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM); - assertBorder(sheet, i++, 0, CellStyle.BORDER_THICK, CellStyle.BORDER_THICK, CellStyle.BORDER_THICK, - CellStyle.BORDER_THICK); - - assertBorder(sheet, i++, 0, CellStyle.BORDER_DOTTED, CellStyle.BORDER_DOTTED, CellStyle.BORDER_DOTTED, - CellStyle.BORDER_DOTTED); - assertBorder(sheet, i++, 0, CellStyle.BORDER_DOTTED, CellStyle.BORDER_DOTTED, CellStyle.BORDER_DOTTED, - CellStyle.BORDER_DOTTED); - assertBorder(sheet, i++, 0, CellStyle.BORDER_DOTTED, CellStyle.BORDER_DOTTED, CellStyle.BORDER_DOTTED, - CellStyle.BORDER_DOTTED); - - assertBorder(sheet, i++, 0, CellStyle.BORDER_DASHED, CellStyle.BORDER_DASHED, CellStyle.BORDER_DASHED, - CellStyle.BORDER_DASHED); - assertBorder(sheet, i++, 0, CellStyle.BORDER_MEDIUM_DASHED, CellStyle.BORDER_MEDIUM_DASHED, - CellStyle.BORDER_MEDIUM_DASHED, CellStyle.BORDER_MEDIUM_DASHED); - assertBorder(sheet, i++, 0, CellStyle.BORDER_MEDIUM_DASHED, CellStyle.BORDER_MEDIUM_DASHED, - CellStyle.BORDER_MEDIUM_DASHED, CellStyle.BORDER_MEDIUM_DASHED); - - assertBorder(sheet, i++, 0, CellStyle.BORDER_DOUBLE, CellStyle.BORDER_DOUBLE, CellStyle.BORDER_DOUBLE, - CellStyle.BORDER_DOUBLE); - assertBorder(sheet, i++, 0, CellStyle.BORDER_DOUBLE, CellStyle.BORDER_DOUBLE, CellStyle.BORDER_DOUBLE, - CellStyle.BORDER_DOUBLE); - assertBorder(sheet, i++, 0, CellStyle.BORDER_DOUBLE, CellStyle.BORDER_DOUBLE, CellStyle.BORDER_DOUBLE, - CellStyle.BORDER_DOUBLE); + assertBorder(sheet, i++, 0, BorderStyle.THIN /* CellStyle.BORDER_THIN */, BorderStyle.THIN /* CellStyle.BORDER_THIN */, BorderStyle.THIN /* CellStyle.BORDER_THIN */, + BorderStyle.THIN /* CellStyle.BORDER_THIN */); + assertBorder(sheet, i++, 0, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + assertBorder(sheet, i++, 0, BorderStyle.THICK /* CellStyle.BORDER_THICK */, BorderStyle.THICK /* CellStyle.BORDER_THICK */, BorderStyle.THICK /* CellStyle.BORDER_THICK */, + BorderStyle.THICK /* CellStyle.BORDER_THICK */); + + assertBorder(sheet, i++, 0, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, + BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */); + assertBorder(sheet, i++, 0, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, + BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */); + assertBorder(sheet, i++, 0, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */, + BorderStyle.DOTTED /* CellStyle.BORDER_DOTTED */); + + assertBorder(sheet, i++, 0, BorderStyle.DASHED /* CellStyle.BORDER_DASHED */, BorderStyle.DASHED /* CellStyle.BORDER_DASHED */, BorderStyle.DASHED /* CellStyle.BORDER_DASHED */, + BorderStyle.DASHED /* CellStyle.BORDER_DASHED */); + assertBorder(sheet, i++, 0, BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */, BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */, + BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */, BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */); + assertBorder(sheet, i++, 0, BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */, BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */, + BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */, BorderStyle.MEDIUM_DASHED /* CellStyle.BORDER_MEDIUM_DASHED */); + + assertBorder(sheet, i++, 0, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, + BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */); + assertBorder(sheet, i++, 0, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, + BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */); + assertBorder(sheet, i++, 0, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */, + BorderStyle.DOUBLE /* CellStyle.BORDER_DOUBLE */); } finally { inputStream.close(); diff --git a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders2ReportTest.java b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders2ReportTest.java index 46112e9927d..61e4493da22 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders2ReportTest.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders2ReportTest.java @@ -19,6 +19,7 @@ import java.io.IOException; import java.io.InputStream; +import org.apache.poi.ss.usermodel.BorderStyle; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.Row; @@ -36,7 +37,7 @@ public class Borders2ReportTest extends ReportRunner { * for the chosen cell. I don't know how to tell which takes precedence, but the * following works for the tests I've carried out. */ - public static void assertBorder(Sheet sheet, int row, int col, short bottom, short left, short right, short top) { + public static void assertBorder(Sheet sheet, int row, int col, BorderStyle bottom, BorderStyle left, BorderStyle right, BorderStyle top) { Row curRow = sheet.getRow(row); Row prevRow = (row > 0) ? sheet.getRow(row - 1) : null; @@ -88,11 +89,11 @@ public void testRunReport() throws BirtException, IOException { Sheet sheet = workbook.getSheetAt(0); assertEquals(4, firstNullRow(sheet)); - assertBorder(sheet, 1, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM); + assertBorder(sheet, 1, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); - assertBorder(sheet, 1, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM); + assertBorder(sheet, 1, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); } finally { inputStream.close(); diff --git a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders3ReportTest.java b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders3ReportTest.java index 0cfb35a9687..bf52664e682 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders3ReportTest.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders3ReportTest.java @@ -20,6 +20,7 @@ import java.io.InputStream; import org.apache.poi.hssf.usermodel.HSSFWorkbook; +import org.apache.poi.ss.usermodel.BorderStyle; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; @@ -28,26 +29,6 @@ public class Borders3ReportTest extends ReportRunner { - /* - * private String translateBorderStyle( int style ) { switch( style ) { case - * CellStyle.BORDER_NONE: return "CellStyle.BORDER_NONE"; case - * CellStyle.BORDER_THIN: return "CellStyle.BORDER_THIN"; case - * CellStyle.BORDER_MEDIUM: return "CellStyle.BORDER_MEDIUM"; case - * CellStyle.BORDER_DASHED: return "CellStyle.BORDER_DASHED"; case - * CellStyle.BORDER_HAIR: return "CellStyle.BORDER_HAIR"; case - * CellStyle.BORDER_THICK: return "CellStyle.BORDER_THICK"; case - * CellStyle.BORDER_DOUBLE: return "CellStyle.BORDER_DOUBLE"; case - * CellStyle.BORDER_DOTTED: return "CellStyle.BORDER_DOTTED"; case - * CellStyle.BORDER_MEDIUM_DASHED: return "CellStyle.BORDER_MEDIUM_DASHED"; case - * CellStyle.BORDER_DASH_DOT: return "CellStyle.BORDER_DASH_DOT"; case - * CellStyle.BORDER_MEDIUM_DASH_DOT: return "CellStyle.BORDER_MEDIUM_DASH_DOT"; - * case CellStyle.BORDER_DASH_DOT_DOT: return "CellStyle.BORDER_DASH_DOT_DOT"; - * case CellStyle.BORDER_MEDIUM_DASH_DOT_DOT: return - * "CellStyle.BORDER_MEDIUM_DASH_DOT_DOT"; case - * CellStyle.BORDER_SLANTED_DASH_DOT: return - * "CellStyle.BORDER_SLANTED_DASH_DOT"; default: return "Unknown"; } } - */ - @Test public void testRunReport() throws BirtException, IOException { @@ -65,422 +46,422 @@ public void testRunReport() throws BirtException, IOException { Sheet sheet = workbook.getSheetAt(0); assertEquals(26, firstNullRow(sheet)); - Borders2ReportTest.assertBorder(sheet, 0, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 1, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 1, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 1, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 1, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 1, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 1, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 1, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 1, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 2, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 2, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 2, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 2, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 2, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 2, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 2, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 2, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 0, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 7, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 5, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 5, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 5, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 5, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 5, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 5, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 5, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 5, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 6, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 6, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 6, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 6, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 6, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 6, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 6, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 6, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 9, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 9, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 9, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 9, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 9, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 9, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 9, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 9, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 11, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 11, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 11, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 11, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 11, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 11, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 11, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 11, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 15, 0, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 7, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 16, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 17, 0, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 7, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 0, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 7, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 19, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 21, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 21, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 21, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 21, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 21, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 21, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 21, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 21, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 22, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 22, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 22, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 22, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 22, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 22, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 22, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 22, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 23, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 23, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 23, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 23, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 23, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 23, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 23, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 23, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 24, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 25, 0, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 25, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 25, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 25, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 25, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 25, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 25, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 25, 7, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); + Borders2ReportTest.assertBorder(sheet, 0, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 1, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 1, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 1, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 1, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 1, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 1, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 1, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 1, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 2, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 2, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 2, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 2, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 2, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 2, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 2, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 2, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 0, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 7, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 5, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 5, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 5, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 5, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 5, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 5, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 5, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 5, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 6, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 6, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 6, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 6, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 6, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 6, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 6, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 6, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 9, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 9, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 9, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 9, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 9, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 9, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 9, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 9, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 11, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 11, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 11, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 11, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 11, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 11, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 11, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 11, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 15, 0, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 7, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 16, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 17, 0, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 7, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 0, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 7, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 19, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 21, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 21, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 21, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 21, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 21, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 21, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 21, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 21, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 22, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 22, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 22, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 22, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 22, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 22, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 22, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 22, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 23, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 23, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 23, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 23, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 23, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 23, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 23, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 23, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 24, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 25, 0, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 25, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 25, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 25, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 25, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 25, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 25, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 25, 7, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); } finally { inputStream.close(); @@ -505,422 +486,422 @@ public void testRunReportXls() throws BirtException, IOException { Sheet sheet = workbook.getSheetAt(0); assertEquals(26, firstNullRow(sheet)); - Borders2ReportTest.assertBorder(sheet, 0, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 0, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 1, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 1, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 1, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 1, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 1, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 1, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 1, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 1, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 2, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 2, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 2, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 2, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 2, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 2, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 2, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 2, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 0, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 3, 7, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 4, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 5, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 5, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 5, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 5, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 5, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 5, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 5, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 5, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 6, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 6, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 6, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 6, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 6, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 6, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 6, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 6, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 7, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 8, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 9, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 9, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 9, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 9, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 9, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 9, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 9, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 9, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 10, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 11, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 11, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 11, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 11, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 11, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 11, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 11, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 11, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 12, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 13, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 14, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 15, 0, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 15, 7, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 16, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 16, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 17, 0, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 17, 7, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 0, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 4, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 18, 7, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 19, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 19, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 20, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 21, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 21, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 21, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 21, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 21, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 21, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 21, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 21, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 22, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 22, 1, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 22, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 22, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 22, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 22, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 22, 6, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 22, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 23, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 23, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 23, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 23, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 23, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 23, 5, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 23, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 23, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 2, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 3, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 24, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 24, 7, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 25, 0, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM); - Borders2ReportTest.assertBorder(sheet, 25, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 25, 2, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 25, 3, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 25, 4, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 25, 5, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 25, 6, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_MEDIUM, - CellStyle.BORDER_NONE, CellStyle.BORDER_NONE); - Borders2ReportTest.assertBorder(sheet, 25, 7, CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE, - CellStyle.BORDER_MEDIUM, CellStyle.BORDER_NONE); + Borders2ReportTest.assertBorder(sheet, 0, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 0, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 1, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 1, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 1, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 1, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 1, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 1, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 1, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 1, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 2, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 2, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 2, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 2, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 2, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 2, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 2, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 2, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 0, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 3, 7, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 4, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 5, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 5, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 5, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 5, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 5, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 5, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 5, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 5, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 6, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 6, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 6, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 6, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 6, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 6, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 6, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 6, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 7, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 8, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 9, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 9, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 9, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 9, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 9, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 9, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 9, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 9, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 10, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 11, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 11, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 11, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 11, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 11, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 11, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 11, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 11, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 12, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 13, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 14, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 15, 0, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 15, 7, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 16, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 16, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 17, 0, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 17, 7, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 0, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 4, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 18, 7, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 19, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 19, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 20, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 21, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 21, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 21, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 21, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 21, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 21, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 21, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 21, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 22, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 22, 1, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 22, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 22, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 22, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 22, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 22, 6, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 22, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 23, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 23, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 23, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 23, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 23, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 23, 5, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 23, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 23, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 2, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 3, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 24, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 24, 7, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 25, 0, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */); + Borders2ReportTest.assertBorder(sheet, 25, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 25, 2, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 25, 3, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 25, 4, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 25, 5, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 25, 6, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); + Borders2ReportTest.assertBorder(sheet, 25, 7, BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.MEDIUM /* CellStyle.BORDER_MEDIUM */, BorderStyle.NONE /* CellStyle.BORDER_NONE */); } finally { inputStream.close(); diff --git a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders4ReportTest.java b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders4ReportTest.java index 54b8b7cfa61..5faa72ec4aa 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders4ReportTest.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Borders4ReportTest.java @@ -19,6 +19,7 @@ import java.io.IOException; import java.io.InputStream; +import org.apache.poi.ss.usermodel.BorderStyle; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.Row; @@ -36,7 +37,7 @@ public class Borders4ReportTest extends ReportRunner { * for the chosen cell. I don't know how to tell which takes precedence, but the * following works for the tests I've carried out. */ - public static void assertBorder(Sheet sheet, int row, int col, short bottom, short left, short right, short top) { + public static void assertBorder(Sheet sheet, int row, int col, BorderStyle bottom, BorderStyle left, BorderStyle right, BorderStyle top) { Row curRow = sheet.getRow(row); Row prevRow = (row > 0) ? sheet.getRow(row - 1) : null; @@ -87,11 +88,11 @@ public void testRunReport() throws BirtException, IOException { Sheet sheet = workbook.getSheetAt(1); assertEquals(2, firstNullRow(sheet)); - assertBorder(sheet, 0, 0, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE); + assertBorder(sheet, 0, 0, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */); - assertBorder(sheet, 0, 1, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, CellStyle.BORDER_NONE, - CellStyle.BORDER_NONE); + assertBorder(sheet, 0, 1, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, BorderStyle.NONE /* CellStyle.BORDER_NONE */, + BorderStyle.NONE /* CellStyle.BORDER_NONE */); } finally { inputStream.close(); diff --git a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/GridsTests.java b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/GridsTests.java index 76fb7694986..929b4466a3f 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/GridsTests.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/GridsTests.java @@ -22,6 +22,7 @@ import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.DataFormatter; +import org.apache.poi.ss.usermodel.HorizontalAlignment; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.eclipse.birt.core.exception.BirtException; @@ -50,7 +51,7 @@ public void testRunReportXlsx() throws BirtException, IOException { assertEquals( "This is a label\nHeading 1\nThis is text\nHeading 2\nStyles\nBold, Italic, Bold and italic and finally Underline.\n� Oh\n� Dear\nIsle of Mann\nPlain text.\nAnd this is a label", formatter.formatCellValue(sheet.getRow(0).getCell(1))); - assertEquals(CellStyle.ALIGN_GENERAL, sheet.getRow(0).getCell(1).getCellStyle().getAlignment()); + assertEquals(HorizontalAlignment.GENERAL /* CellStyle.ALIGN_GENERAL */, sheet.getRow(0).getCell(1).getCellStyle().getAlignment()); assertEquals(14, sheet.getRow(0).getCell(1).getRichStringCellValue().numFormattingRuns()); assertEquals("Hello", formatter.formatCellValue(sheet.getRow(1).getCell(0))); assertEquals("End", formatter.formatCellValue(sheet.getRow(2).getCell(0))); @@ -81,7 +82,7 @@ public void testRunReportXls() throws BirtException, IOException { assertEquals( "This is a label\nHeading 1\nThis is text\nHeading 2\nStyles\nBold, Italic, Bold and italic and finally Underline.\n� Oh\n� Dear\nIsle of Mann\nPlain text.\nAnd this is a label", formatter.formatCellValue(sheet.getRow(0).getCell(1))); - assertEquals(CellStyle.ALIGN_GENERAL, sheet.getRow(0).getCell(1).getCellStyle().getAlignment()); + assertEquals(HorizontalAlignment.GENERAL /* CellStyle.ALIGN_GENERAL */, sheet.getRow(0).getCell(1).getCellStyle().getAlignment()); assertEquals(13, sheet.getRow(0).getCell(1).getRichStringCellValue().numFormattingRuns()); assertEquals("Hello", formatter.formatCellValue(sheet.getRow(1).getCell(0))); assertEquals("End", formatter.formatCellValue(sheet.getRow(2).getCell(0))); diff --git a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/HyperlinksTest.java b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/HyperlinksTest.java index ed982e2fda4..9156fe55585 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/HyperlinksTest.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/HyperlinksTest.java @@ -22,7 +22,9 @@ import java.util.regex.Matcher; import org.apache.poi.hssf.usermodel.HSSFWorkbook; +import org.apache.poi.ss.SpreadsheetVersion; import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.CellType; import org.apache.poi.ss.usermodel.Name; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; @@ -42,7 +44,7 @@ private void validateNamedRange(Workbook workbook, int index, String name, int s assertEquals(name, namedRange.getNameName()); assertEquals(sheetIndex, namedRange.getSheetIndex()); - AreaReference ref = new AreaReference(namedRange.getRefersToFormula()); + AreaReference ref = new AreaReference(namedRange.getRefersToFormula(), SpreadsheetVersion.EXCEL2007); if ((row1 == row2) && (col1 == col2)) { assertTrue(ref.isSingleCell()); @@ -90,7 +92,7 @@ public void testBookmarksXls() throws BirtException, IOException { for (Row row : sheet) { for (Cell cell : row) { - if (cell.getCellType() == Cell.CELL_TYPE_STRING) { + if (CellType.STRING /* Cell.CELL_TYPE_STRING */.equals(cell.getCellType())) { String cellValue = cell.getStringCellValue(); Matcher matcher = pattern.matcher(cellValue); if (matcher.matches()) { @@ -145,7 +147,7 @@ public void testBookmarksXlsx() throws BirtException, IOException { for (Row row : sheet) { for (Cell cell : row) { - if (cell.getCellType() == Cell.CELL_TYPE_STRING) { + if (CellType.STRING /* Cell.CELL_TYPE_STRING */.equals(cell.getCellType())) { String cellValue = cell.getStringCellValue(); Matcher matcher = pattern.matcher(cellValue); diff --git a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Issue27.java b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Issue27.java index 63f6193d3e3..f163d2380a2 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Issue27.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Issue27.java @@ -22,6 +22,7 @@ import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.CellType; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; @@ -47,7 +48,7 @@ public void testRowSpanXls() throws BirtException, IOException { for (Row row : sheet) { for (Cell cell : row) { - if (cell.getCellType() == Cell.CELL_TYPE_STRING) { + if (CellType.STRING /* Cell.CELL_TYPE_STRING */.equals(cell.getCellType())) { String cellValue = cell.getStringCellValue(); Matcher matcher = pattern.matcher(cellValue); if (matcher.matches()) { @@ -79,7 +80,7 @@ public void testRowSpanXlsx() throws BirtException, IOException { for (Row row : sheet) { for (Cell cell : row) { - if (cell.getCellType() == Cell.CELL_TYPE_STRING) { + if (CellType.STRING /* Cell.CELL_TYPE_STRING */.equals(cell.getCellType())) { String cellValue = cell.getStringCellValue(); Matcher matcher = pattern.matcher(cellValue); diff --git a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Issue56FreezePanes.java b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Issue56FreezePanes.java index 87f691c4674..7f71cf4f597 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Issue56FreezePanes.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/Issue56FreezePanes.java @@ -18,7 +18,7 @@ import java.io.InputStream; -import org.apache.poi.hssf.util.PaneInformation; +import org.apache.poi.ss.util.PaneInformation; import org.apache.poi.xssf.usermodel.XSSFSheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.junit.Test; diff --git a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/SimpleTableReportTest.java b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/SimpleTableReportTest.java index a094e5abe5d..ed48f491047 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/SimpleTableReportTest.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel.tests/src/uk/co/spudsoft/birt/emitters/excel/tests/SimpleTableReportTest.java @@ -19,7 +19,7 @@ import java.io.IOException; import java.io.InputStream; -import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.CellType; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; import org.eclipse.birt.core.exception.BirtException; @@ -46,7 +46,7 @@ public void testRunReport() throws BirtException, IOException { assertEquals("1", sheet.getRow(0).getCell(0).getStringCellValue()); assertEquals("2", sheet.getRow(1).getCell(0).getStringCellValue()); assertEquals(3.0, sheet.getRow(0).getCell(1).getNumericCellValue(), 0.001); - assertEquals(Cell.CELL_TYPE_BLANK, sheet.getRow(1).getCell(1).getCellType()); + assertEquals(CellType.BLANK /* Cell.CELL_TYPE_BLANK */, sheet.getRow(1).getCell(1).getCellType()); assertEquals("Title\nSubtitle", sheet.getHeader().getLeft()); assertEquals("The Writer", sheet.getFooter().getLeft()); diff --git a/engine/uk.co.spudsoft.birt.emitters.excel/META-INF/MANIFEST.MF b/engine/uk.co.spudsoft.birt.emitters.excel/META-INF/MANIFEST.MF index 16b3ee62f8b..ee96c988b27 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel/META-INF/MANIFEST.MF +++ b/engine/uk.co.spudsoft.birt.emitters.excel/META-INF/MANIFEST.MF @@ -6,10 +6,12 @@ Bundle-Version: 4.9.0.qualifier Bundle-Activator: uk.co.spudsoft.birt.emitters.excel.framework.ExcelEmitterPlugin Bundle-Vendor: SpudSoft Require-Bundle: org.eclipse.birt.report.engine, - org.apache.poi;bundle-version="[3.9.0,4.0.0)", - org.apache.poi.ooxml;bundle-version="[3.9.0,4.0.0)", - org.apache.poi.ooxml.schemas;bundle-version="[3.9.0,4.0.0)", - javax.xml;bundle-version="1.3.4" + org.apache.poi;bundle-version="[4.1.1,5.0.0)", + org.apache.poi.ooxml;bundle-version="[4.1.1,5.0.0)", + org.apache.poi.ooxml.schemas;bundle-version="[4.1.1,5.0.0)", + javax.xml;bundle-version="1.3.4", + org.apache.xmlbeans;bundle-version="[3.1.0,4.0.0)", + org.apache.commons.compress;bundle-version="[1.19.0,2.0.0)" Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Bundle-ClassPath: ., lib/commons-codec-1.5.jar diff --git a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/FilteredSheet.java b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/FilteredSheet.java index b692aa9a575..306692ff571 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/FilteredSheet.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/FilteredSheet.java @@ -9,13 +9,17 @@ * * Contributors: * James Talbut - Initial implementation. + * Steve Schafer - Upgrade to poi 4.1.1 ************************************************************************************/ package uk.co.spudsoft.birt.emitters.excel; +import java.util.Collection; import java.util.Iterator; +import java.util.List; +import java.util.Map; -import org.apache.poi.hssf.util.PaneInformation; +// import org.apache.poi.hssf.util.PaneInformation; import org.apache.poi.ss.usermodel.AutoFilter; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.CellRange; @@ -26,12 +30,15 @@ import org.apache.poi.ss.usermodel.Drawing; import org.apache.poi.ss.usermodel.Footer; import org.apache.poi.ss.usermodel.Header; +import org.apache.poi.ss.usermodel.Hyperlink; import org.apache.poi.ss.usermodel.PrintSetup; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.ss.usermodel.SheetConditionalFormatting; import org.apache.poi.ss.usermodel.Workbook; +import org.apache.poi.ss.util.CellAddress; import org.apache.poi.ss.util.CellRangeAddress; +import org.apache.poi.ss.util.PaneInformation; public class FilteredSheet implements Sheet { @@ -90,7 +97,6 @@ public CellRangeAddress getRepeatingColumns() { } public CellRangeAddress getRepeatingRows() { - // TODO Auto-generated method stub return sheet.getRepeatingRows(); } @@ -319,7 +325,11 @@ public boolean getScenarioProtect() { } public void setZoom(int numerator, int denominator) { - sheet.setZoom(numerator, denominator); + // sheet.setZoom(numerator, denominator); + double dnum = Integer.valueOf(numerator).doubleValue(); + double dden = Integer.valueOf(denominator).doubleValue(); + double pct = dnum / dden * 100.0; + sheet.setZoom(Double.valueOf(pct).intValue()); } public short getTopRow() { @@ -363,7 +373,6 @@ public void setDisplayGridlines(boolean show) { } public boolean isDisplayGridlines() { - // TODO Auto-generated method stub return sheet.isDisplayGridlines(); } @@ -408,7 +417,6 @@ public void setColumnBreak(int column) { } public boolean isColumnBroken(int column) { - // TODO Auto-generated method stub return sheet.isColumnBroken(column); } @@ -453,10 +461,10 @@ public void autoSizeColumn(int column, boolean useMergedCells) { } public Comment getCellComment(int row, int column) { - return sheet.getCellComment(row, column); + return sheet.getCellComment(new CellAddress(row, column)); } - public Drawing createDrawingPatriarch() { + public Drawing createDrawingPatriarch() { return sheet.createDrawingPatriarch(); } @@ -496,4 +504,103 @@ public SheetConditionalFormatting getSheetConditionalFormatting() { return sheet.getSheetConditionalFormatting(); } + @Override + public float getColumnWidthInPixels(int columnIndex) { + return sheet.getColumnWidthInPixels(columnIndex); + } + + @Override + public int addMergedRegionUnsafe(CellRangeAddress region) { + return sheet.addMergedRegionUnsafe(region); + } + + @Override + public void validateMergedRegions() { + sheet.validateMergedRegions(); + } + + @Override + public void removeMergedRegions(Collection indices) { + sheet.removeMergedRegions(indices); + } + + @Override + public List getMergedRegions() { + return sheet.getMergedRegions(); + } + + @Override + public boolean isPrintRowAndColumnHeadings() { + return sheet.isPrintRowAndColumnHeadings(); + } + + @Override + public void setPrintRowAndColumnHeadings(boolean show) { + sheet.setPrintRowAndColumnHeadings(show); + } + + @Override + public void setZoom(int scale) { + sheet.setZoom(scale); + } + + @Override + public void showInPane(int toprow, int leftcol) { + sheet.showInPane(toprow, leftcol); + } + + @Override + public void shiftColumns(int startColumn, int endColumn, int n) { + sheet.shiftColumns(startColumn, endColumn, n); + } + + @Override + public Comment getCellComment(CellAddress ref) { + return sheet.getCellComment(ref); + } + + @Override + public Map getCellComments() { + return sheet.getCellComments(); + } + + @Override + public Drawing getDrawingPatriarch() { + return sheet.getDrawingPatriarch(); + } + + @Override + public List getDataValidations() { + return sheet.getDataValidations(); + } + + @Override + public int getColumnOutlineLevel(int columnIndex) { + return sheet.getColumnOutlineLevel(columnIndex); + } + + @Override + public Hyperlink getHyperlink(int row, int column) { + return sheet.getHyperlink(row, column); + } + + @Override + public Hyperlink getHyperlink(CellAddress addr) { + return sheet.getHyperlink(addr); + } + + @Override + public List getHyperlinkList() { + return sheet.getHyperlinkList(); + } + + @Override + public CellAddress getActiveCell() { + return sheet.getActiveCell(); + } + + @Override + public void setActiveCell(CellAddress address) { + sheet.setActiveCell(address); + } } diff --git a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/FontManager.java b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/FontManager.java index 4be5bea7351..36384d2ed2a 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/FontManager.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/FontManager.java @@ -156,11 +156,13 @@ private Font createFont(BirtStyle birtStyle) { font.setFontHeightInPoints(fontSize); } // Weight - short fontWeight = smu - .poiFontWeightFromBirt(cleanupQuotes(birtStyle.getProperty(StyleConstants.STYLE_FONT_WEIGHT))); - if (fontWeight > 0) { - font.setBoldweight(fontWeight); - } + // short fontWeight = smu + // .poiFontWeightFromBirt(cleanupQuotes(birtStyle.getProperty(StyleConstants.STYLE_FONT_WEIGHT))); + // if (fontWeight > 0) { + // font.setBoldweight(fontWeight); + // } + boolean fontWeight = smu.poiFontWeightFromBirt(cleanupQuotes(birtStyle.getProperty( StyleConstants.STYLE_FONT_WEIGHT ))); + font.setBold(fontWeight); // Style String fontStyle = cleanupQuotes(birtStyle.getProperty(StyleConstants.STYLE_FONT_STYLE)); if (CSSConstants.CSS_ITALIC_VALUE.equals(fontStyle) || CSSConstants.CSS_OBLIQUE_VALUE.equals(fontStyle)) { diff --git a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManager.java b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManager.java index 1dce0beeeaf..dd30d45b51f 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManager.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManager.java @@ -19,6 +19,8 @@ import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.Font; +import org.apache.poi.ss.usermodel.HorizontalAlignment; +import org.apache.poi.ss.usermodel.VerticalAlignment; import org.apache.poi.ss.usermodel.Workbook; import org.apache.poi.xssf.usermodel.extensions.XSSFCellBorder.BorderSide; import org.eclipse.birt.report.engine.content.IStyle; @@ -61,7 +63,7 @@ public StylePair(BirtStyle birtStyle, CellStyle poiStyle) { private List styles = new ArrayList(); private StyleManagerUtils smu; private CSSEngine cssEngine; - private Logger log; + // private Logger log; private Locale locale; /** @@ -76,7 +78,7 @@ public StylePair(BirtStyle birtStyle, CellStyle poiStyle) { public StyleManager(Workbook workbook, Logger log, StyleManagerUtils smu, CSSEngine cssEngine, Locale locale) { this.workbook = workbook; this.fm = new FontManager(cssEngine, workbook, smu); - this.log = log; + // this.log = log; this.smu = smu; this.cssEngine = cssEngine; this.locale = locale; @@ -162,7 +164,10 @@ private CellStyle createStyle(BirtStyle birtStyle) { poiStyle.setFont(font); } // Alignment - poiStyle.setAlignment(smu.poiAlignmentFromBirtAlignment(birtStyle.getString(StyleConstants.STYLE_TEXT_ALIGN))); + // poiStyle.setAlignment(smu.poiAlignmentFromBirtAlignment(birtStyle.getString(StyleConstants.STYLE_TEXT_ALIGN))); + HorizontalAlignment alignment = smu + .poiAlignmentFromBirtAlignment(birtStyle.getString(StyleConstants.STYLE_TEXT_ALIGN)); + poiStyle.setAlignment(alignment); // Background colour smu.addBackgroundColourToStyle(workbook, poiStyle, birtStyle.getString(StyleConstants.STYLE_BACKGROUND_COLOR)); // Top border @@ -193,11 +198,11 @@ private CellStyle createStyle(BirtStyle birtStyle) { } // Vertical alignment if (CSSConstants.CSS_TOP_VALUE.equals(birtStyle.getString(StyleConstants.STYLE_VERTICAL_ALIGN))) { - poiStyle.setVerticalAlignment(CellStyle.VERTICAL_TOP); + poiStyle.setVerticalAlignment(VerticalAlignment.TOP); } else if (CSSConstants.CSS_MIDDLE_VALUE.equals(birtStyle.getString(StyleConstants.STYLE_VERTICAL_ALIGN))) { - poiStyle.setVerticalAlignment(CellStyle.VERTICAL_CENTER); + poiStyle.setVerticalAlignment(VerticalAlignment.CENTER); } else if (CSSConstants.CSS_BOTTOM_VALUE.equals(birtStyle.getString(StyleConstants.STYLE_VERTICAL_ALIGN))) { - poiStyle.setVerticalAlignment(CellStyle.VERTICAL_BOTTOM); + poiStyle.setVerticalAlignment(VerticalAlignment.BOTTOM); } // Rotation CSSValue rotation = birtStyle.getProperty(BirtStyle.TEXT_ROTATION); diff --git a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManagerHUtils.java b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManagerHUtils.java index 2d7357985fa..f67313e045d 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManagerHUtils.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManagerHUtils.java @@ -19,7 +19,9 @@ import org.apache.poi.hssf.usermodel.HSSFRichTextString; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.hssf.util.HSSFColor; +import org.apache.poi.ss.usermodel.BorderStyle; import org.apache.poi.ss.usermodel.CellStyle; +import org.apache.poi.ss.usermodel.FillPatternType; import org.apache.poi.ss.usermodel.Font; import org.apache.poi.ss.usermodel.RichTextString; import org.apache.poi.ss.usermodel.Sheet; @@ -76,9 +78,9 @@ public RichTextString createRichTextString(String value) { * @param width The width of the border as understood by BIRT. * @return One of the CellStyle BORDER constants. */ - private short poiBorderStyleFromBirt(String birtBorder, String width) { + private BorderStyle poiBorderStyleFromBirt(String birtBorder, String width) { if ("none".equals(birtBorder)) { - return CellStyle.BORDER_NONE; + return BorderStyle.NONE; // CellStyle.BORDER_NONE; } DimensionType dim = DimensionType.parserUnit(width); double pxWidth = 3.0; @@ -87,28 +89,28 @@ private short poiBorderStyleFromBirt(String birtBorder, String width) { } if ("solid".equals(birtBorder)) { if (pxWidth < 2.9) { - return CellStyle.BORDER_THIN; + return BorderStyle.THIN; // CellStyle.BORDER_THIN; } else if (pxWidth < 3.1) { - return CellStyle.BORDER_MEDIUM; + return BorderStyle.MEDIUM; // CellStyle.BORDER_MEDIUM; } else { - return CellStyle.BORDER_THICK; + return BorderStyle.THICK; // CellStyle.BORDER_THICK; } } else if ("dashed".equals(birtBorder)) { if (pxWidth < 2.9) { - return CellStyle.BORDER_DASHED; + return BorderStyle.DASHED; // CellStyle.BORDER_DASHED; } else { - return CellStyle.BORDER_MEDIUM_DASHED; + return BorderStyle.MEDIUM_DASHED; // CellStyle.BORDER_MEDIUM_DASHED; } } else if ("dotted".equals(birtBorder)) { - return CellStyle.BORDER_DOTTED; + return BorderStyle.DOTTED; // CellStyle.BORDER_DOTTED; } else if ("double".equals(birtBorder)) { - return CellStyle.BORDER_DOUBLE; + return BorderStyle.DOUBLE; // CellStyle.BORDER_DOUBLE; } else if ("none".equals(birtBorder)) { - return CellStyle.BORDER_NONE; + return BorderStyle.NONE; // CellStyle.BORDER_NONE; } log.debug("Border style \"", birtBorder, "\" is not recognised"); - return CellStyle.BORDER_NONE; + return BorderStyle.NONE; // CellStyle.BORDER_NONE; } /** @@ -153,10 +155,10 @@ public void applyBorderStyle(Workbook workbook, CellStyle style, BorderSide side if (style instanceof HSSFCellStyle) { HSSFCellStyle hStyle = (HSSFCellStyle) style; - short hBorderStyle = poiBorderStyleFromBirt(borderStyleString, widthString); + BorderStyle hBorderStyle = poiBorderStyleFromBirt(borderStyleString, widthString); short colourIndex = getHColour((HSSFWorkbook) workbook, colourString); if (colourIndex > 0) { - if (hBorderStyle != CellStyle.BORDER_NONE) { + if (!BorderStyle.NONE /* CellStyle.BORDER_NONE */.equals(hBorderStyle)) { switch (side) { case TOP: hStyle.setBorderTop(hBorderStyle); @@ -194,7 +196,8 @@ public void addColourToFont(Workbook workbook, Font font, String colour) { if (colour == null) { return; } - if (IStyle.TRANSPARENT_VALUE.equals(colour)) { + // if (IStyle.TRANSPARENT_VALUE.equals(colour)) { + if(IStyle.TRANSPARENT_VALUE.getCssText().equals(colour)) { return; } if (font instanceof HSSFFont) { @@ -219,7 +222,8 @@ public void addBackgroundColourToStyle(Workbook workbook, CellStyle style, Strin short colourIndex = getHColour((HSSFWorkbook) workbook, colour); if (colourIndex > 0) { cellStyle.setFillForegroundColor(colourIndex); - cellStyle.setFillPattern(CellStyle.SOLID_FOREGROUND); + // cellStyle.setFillPattern(CellStyle.SOLID_FOREGROUND); + cellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND); } } } @@ -231,7 +235,8 @@ public Font correctFontColorIfBackground(FontManager fm, Workbook wb, BirtStyle CSSValue bgColour = birtStyle.getProperty(StyleConstants.STYLE_BACKGROUND_COLOR); int bgRgb[] = parseColour(bgColour == null ? null : bgColour.getCssText(), "white"); - short fgRgb[] = HSSFColor.BLACK.triplet; + // short fgRgb[] = HSSFColor.BLACK.triplet; + short fgRgb[] = HSSFColor.HSSFColorPredefined.BLACK.getTriplet(); if ((font != null) && (font.getColor() != Short.MAX_VALUE)) { fgRgb = palette.getColor(font.getColor()).getTriplet(); } diff --git a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManagerUtils.java b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManagerUtils.java index 13a0fc255b1..c69c783e60a 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManagerUtils.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManagerUtils.java @@ -30,8 +30,11 @@ import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.CellStyle; +import org.apache.poi.ss.usermodel.CellType; import org.apache.poi.ss.usermodel.DataFormat; +import org.apache.poi.ss.usermodel.FillPatternType; import org.apache.poi.ss.usermodel.Font; +import org.apache.poi.ss.usermodel.HorizontalAlignment; import org.apache.poi.ss.usermodel.PrintSetup; import org.apache.poi.ss.usermodel.RichTextString; import org.apache.poi.ss.usermodel.Row; @@ -120,17 +123,17 @@ public static boolean dataFormatsEquivalent(DataFormatValue dataFormat1, DataFor * @param alignment The BIRT alignment string. * @return One of the CellStyle.ALIGN* constants. */ - public short poiAlignmentFromBirtAlignment(String alignment) { + public HorizontalAlignment poiAlignmentFromBirtAlignment(String alignment) { if (CSSConstants.CSS_LEFT_VALUE.equals(alignment)) { - return CellStyle.ALIGN_LEFT; + return HorizontalAlignment.LEFT; // CellStyle.ALIGN_LEFT; } if (CSSConstants.CSS_RIGHT_VALUE.equals(alignment)) { - return CellStyle.ALIGN_RIGHT; + return HorizontalAlignment.RIGHT; // CellStyle.ALIGN_RIGHT; } if (CSSConstants.CSS_CENTER_VALUE.equals(alignment)) { - return CellStyle.ALIGN_CENTER; + return HorizontalAlignment.CENTER; // CellStyle.ALIGN_CENTER; } - return CellStyle.ALIGN_GENERAL; + return HorizontalAlignment.GENERAL; // CellStyle.ALIGN_GENERAL; } /** @@ -211,14 +214,14 @@ public int poiColumnWidthFromDimension(DimensionType dim) { * @param fontWeight The font weight as understood by BIRT. * @return One of the Font.BOLDWEIGHT_* constants. */ - public short poiFontWeightFromBirt(String fontWeight) { + public boolean poiFontWeightFromBirt(String fontWeight) { if (fontWeight == null) { - return 0; + return false; // 0; } if ("bold".equals(fontWeight)) { - return Font.BOLDWEIGHT_BOLD; + return true; // Font.BOLDWEIGHT_BOLD; } - return Font.BOLDWEIGHT_NORMAL; + return false; // Font.BOLDWEIGHT_NORMAL; } /** @@ -280,14 +283,16 @@ public String poiFontNameFromBirt(String fontName) { * @return true is the cell is empty and has no style or has no background fill. */ public static boolean cellIsEmpty(Cell cell) { - if (cell.getCellType() != Cell.CELL_TYPE_BLANK) { + // if (cell.getCellType() != Cell.CELL_TYPE_BLANK) { + if(!CellType.BLANK.equals(cell.getCellType())) { return false; } CellStyle cellStyle = cell.getCellStyle(); if (cellStyle == null) { return true; } - if (cellStyle.getFillPattern() == CellStyle.NO_FILL) { + // if (cellStyle.getFillPattern() == CellStyle.NO_FILL) { + if(FillPatternType.NO_FILL.equals(cellStyle.getFillPattern())) { return true; } return false; @@ -656,7 +661,8 @@ public void applyNumberFormat(Workbook workbook, BirtStyle birtStyle, CellStyle protected void addFontAttributes(AttributedString attrString, Font font, int startIdx, int endIdx) { attrString.addAttribute(TextAttribute.FAMILY, font.getFontName(), startIdx, endIdx); attrString.addAttribute(TextAttribute.SIZE, (float) font.getFontHeightInPoints(), startIdx, endIdx); - if (font.getBoldweight() == Font.BOLDWEIGHT_BOLD) + // if (font.getBoldweight() == Font.BOLDWEIGHT_BOLD) + if (font.getBold()) attrString.addAttribute(TextAttribute.WEIGHT, TextAttribute.WEIGHT_BOLD, startIdx, endIdx); if (font.getItalic()) attrString.addAttribute(TextAttribute.POSTURE, TextAttribute.POSTURE_OBLIQUE, startIdx, endIdx); diff --git a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManagerXUtils.java b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManagerXUtils.java index 57de0a85cff..51ea2809a17 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManagerXUtils.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/StyleManagerXUtils.java @@ -20,6 +20,9 @@ import org.apache.poi.ss.usermodel.RichTextString; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.ss.usermodel.Workbook; +import org.apache.poi.util.Units; +import org.apache.poi.xssf.usermodel.DefaultIndexedColorMap; +import org.apache.poi.xssf.usermodel.IndexedColorMap; import org.apache.poi.xssf.usermodel.XSSFCellStyle; import org.apache.poi.xssf.usermodel.XSSFColor; import org.apache.poi.xssf.usermodel.XSSFFont; @@ -172,7 +175,9 @@ private XSSFColor getXColour(String colour) { byte[] rgbByte = { (byte) -1, (byte) rgbInt[0], (byte) rgbInt[1], (byte) rgbInt[2] }; // System.out.println( "The X colour for " + colour + " is [ " + rgbByte[0] + // "," + rgbByte[1] + "," + rgbByte[2] + "," + rgbByte[3] + "]" ); - XSSFColor result = new XSSFColor(rgbByte); + // XSSFColor result = new XSSFColor(rgbByte); + IndexedColorMap colorMap = new DefaultIndexedColorMap(); + XSSFColor result = new XSSFColor( rgbByte, colorMap ); return result; } @@ -218,7 +223,8 @@ public Font correctFontColorIfBackground(FontManager fm, Workbook wb, BirtStyle int bgRgb[] = parseColour(bgColour == null ? null : bgColour.getCssText(), "white"); XSSFColor colour = ((XSSFFont) font).getXSSFColor(); - int fgRgb[] = rgbOnly(colour.getARgb()); + // int fgRgb[] = rgbOnly(colour.getARgb()); + int fgRgb[] = rgbOnly(colour.getARGB()); if ((fgRgb[0] == 255) && (fgRgb[1] == 255) && (fgRgb[2] == 255)) { fgRgb[0] = fgRgb[1] = fgRgb[2] = 0; } else if ((fgRgb[0] == 0) && (fgRgb[1] == 0) && (fgRgb[2] == 0)) { @@ -243,7 +249,8 @@ public int anchorDxFromMM(double widthMM, double colWidthMM) { @Override public int anchorDyFromPoints(float height, float rowHeight) { - return (int) (height * XSSFShape.EMU_PER_POINT); + // return (int) (height * XSSFShape.EMU_PER_POINT); + return (int)( height * Units.EMU_PER_POINT ); } @Override diff --git a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/handlers/CellContentHandler.java b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/handlers/CellContentHandler.java index 092d7ab9a23..bde5289c7c1 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/handlers/CellContentHandler.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/handlers/CellContentHandler.java @@ -23,6 +23,7 @@ import java.util.Iterator; import java.util.List; +import org.apache.poi.common.usermodel.HyperlinkType; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.CellStyle; import org.apache.poi.ss.usermodel.Font; @@ -158,13 +159,14 @@ protected void endCellContent(HandlerState state, ICellContent birtCell, IConten } } if (hyperlinkUrl != null) { - Hyperlink hyperlink = cell.getSheet().getWorkbook().getCreationHelper().createHyperlink(Hyperlink.LINK_URL); + Hyperlink hyperlink = cell.getSheet().getWorkbook().getCreationHelper() + .createHyperlink(HyperlinkType.URL /* Hyperlink.LINK_URL */); hyperlink.setAddress(hyperlinkUrl); cell.setHyperlink(hyperlink); } if (hyperlinkBookmark != null) { Hyperlink hyperlink = cell.getSheet().getWorkbook().getCreationHelper() - .createHyperlink(Hyperlink.LINK_DOCUMENT); + .createHyperlink(HyperlinkType.DOCUMENT /* Hyperlink.LINK_DOCUMENT */); hyperlink.setAddress(prepareName(hyperlinkBookmark)); cell.setHyperlink(hyperlink); } @@ -247,7 +249,7 @@ protected void endCellContent(HandlerState state, ICellContent birtCell, IConten && ((lastValue instanceof String) || (lastValue instanceof RichTextString))) { int spannedRowAlgorithm = EmitterServices.integerOption(state.getRenderOptions(), element, ExcelEmitter.SPANNED_ROW_HEIGHT, ExcelEmitter.SPANNED_ROW_HEIGHT_SPREAD); - Font defaultFont = state.getWb().getFontAt(cell.getCellStyle().getFontIndex()); + Font defaultFont = state.getWb().getFontAt(cell.getCellStyle().getFontIndexAsInt() /* .getFontIndex() */); double cellWidth = spanWidthMillimetres(state.currentSheet, cell.getColumnIndex(), cell.getColumnIndex() + colSpan - 1); float cellDesiredHeight = smu.calculateTextHeightPoints(cell.getStringCellValue(), defaultFont, cellWidth, @@ -396,7 +398,7 @@ private CSSValue preferredAlignment(BirtStyle elementStyle) { if (CSSConstants.CSS_LEFT_VALUE.equals(newAlign.getCssText())) { return newAlign; } else if (CSSConstants.CSS_RIGHT_VALUE.equals(newAlign.getCssText())) { - if (CSSConstants.CSS_CENTER_VALUE.equals(preferredAlignment)) { + if (CSSConstants.CSS_CENTER_VALUE.equals(preferredAlignment.getCssText())) { return newAlign; } else { return preferredAlignment; diff --git a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/handlers/PageHandler.java b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/handlers/PageHandler.java index f634c82863b..4e70e3d5694 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/handlers/PageHandler.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/handlers/PageHandler.java @@ -17,6 +17,7 @@ import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.ClientAnchor; +import org.apache.poi.ss.usermodel.ClientAnchor.AnchorType; import org.apache.poi.ss.usermodel.Drawing; import org.apache.poi.ss.usermodel.HeaderFooter; import org.apache.poi.ss.usermodel.PrintSetup; @@ -240,7 +241,7 @@ public void endPage(HandlerState state, IPageContent page) throws BirtException state.sheetPassword = null; } - Drawing drawing = null; + Drawing drawing = null; if (!state.images.isEmpty()) { drawing = state.currentSheet.createDrawingPatriarch(); } @@ -277,7 +278,7 @@ private CellRangeAddress getMergedRegionBegunBy(Sheet sheet, int row, int col) { * * @param cellImage The image to be placed on the sheet. */ - private void processCellImage(HandlerState state, Drawing drawing, CellImage cellImage) { + private void processCellImage(HandlerState state, Drawing drawing, CellImage cellImage) { Coordinate location = cellImage.location; Cell cell = state.currentSheet.getRow(location.getRow()).getCell(location.getCol()); @@ -347,7 +348,7 @@ private void processCellImage(HandlerState state, Drawing drawing, CellImage cel anchor.setRow2(cell.getRowIndex() + rowsSpanned); anchor.setDx2(dx); anchor.setDy2(smu.anchorDyFromPoints(ptHeight, cell.getRow().getHeightInPoints())); - anchor.setAnchorType(ClientAnchor.MOVE_DONT_RESIZE); + anchor.setAnchorType(AnchorType.MOVE_DONT_RESIZE /* ClientAnchor.MOVE_DONT_RESIZE */); drawing.createPicture(anchor, cellImage.imageIdx); } diff --git a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/handlers/TopLevelContentHandler.java b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/handlers/TopLevelContentHandler.java index 88c1c3ff886..a03f547392d 100644 --- a/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/handlers/TopLevelContentHandler.java +++ b/engine/uk.co.spudsoft.birt.emitters.excel/src/uk/co/spudsoft/birt/emitters/excel/handlers/TopLevelContentHandler.java @@ -43,7 +43,8 @@ public void emitText(HandlerState state, ITextContent text) throws BirtException (!"inline".equals(getStyleProperty(text, StyleConstants.STYLE_DISPLAY, "block")))); Cell currentCell = state.currentSheet.getRow(state.rowNum).createCell(0); - currentCell.setCellType(Cell.CELL_TYPE_BLANK); + // currentCell.setCellType(Cell.CELL_TYPE_BLANK); + currentCell.setBlank(); endCellContent(state, null, text, currentCell, null); @@ -60,7 +61,8 @@ public void emitData(HandlerState state, IDataContent data) throws BirtException (!"inline".equals(getStyleProperty(data, StyleConstants.STYLE_DISPLAY, "block")))); Cell currentCell = state.currentSheet.getRow(state.rowNum).createCell(0); - currentCell.setCellType(Cell.CELL_TYPE_BLANK); + // currentCell.setCellType(Cell.CELL_TYPE_BLANK); + currentCell.setBlank(); endCellContent(state, null, data, currentCell, null); @@ -78,7 +80,8 @@ public void emitLabel(HandlerState state, ILabelContent label) throws BirtExcept (!"inline".equals(getStyleProperty(label, StyleConstants.STYLE_DISPLAY, "block")))); Cell currentCell = state.currentSheet.getRow(state.rowNum).createCell(0); - currentCell.setCellType(Cell.CELL_TYPE_BLANK); + // currentCell.setCellType(Cell.CELL_TYPE_BLANK); + currentCell.setBlank(); endCellContent(state, null, label, currentCell, null); @@ -105,7 +108,8 @@ public void emitImage(HandlerState state, IImageContent image) throws BirtExcept recordImage(state, new Coordinate(state.rowNum, 0), image, true); Cell currentCell = state.currentSheet.getRow(state.rowNum).createCell(0); - currentCell.setCellType(Cell.CELL_TYPE_BLANK); + // currentCell.setCellType(Cell.CELL_TYPE_BLANK); + currentCell.setBlank(); endCellContent(state, null, image, currentCell, null); diff --git a/releng/maps/orbit_bundles.map b/releng/maps/orbit_bundles.map index 204467b7bbf..ca9336ccbe1 100644 --- a/releng/maps/orbit_bundles.map +++ b/releng/maps/orbit_bundles.map @@ -83,4 +83,14 @@ plugin@javax.xml.stream,1.0.1=GET,http://download.eclipse.org/tools/orbit/downlo plugin@org.eclipse.orbit.mongodb,2.10.1=GET,http://download.eclipse.org/tools/orbit/downloads/drops/R20130517111416/repository/plugins/org.eclipse.orbit.mongodb_2.10.1.v20130422-1135.jar -plugin@org.apache.poi,3.9.0=GET,http://download.eclipse.org/tools/orbit/downloads/drops/R20130517111416/repository/plugins/org.apache.poi_3.9.0.v201303080712.jar +plugin@org.apache.poi,4.1.1=GET,https://download.eclipse.org/tools/orbit/downloads/drops2/I20210306035740/repository/plugins/org.apache.poi_4.1.1.v20200604-1524.jar + +plugin@org.apache.poi.ooxml,4.1.1=GET,https://download.eclipse.org/tools/orbit/downloads/drops2/I20210306035740/repository/plugins/org.apache.poi.ooxml_4.1.1.v20200820-1148.jar + +plugin@org.apache.poi.ooxml.schemas,4.1.1=GET,https://download.eclipse.org/tools/orbit/downloads/drops2/I20210306035740/repository/plugins/org.apache.poi.ooxml.schemas_4.1.1.v20200922-2105.jar + +plugin@org.apache.commons.collections4,4.4.0=GET,https://download.eclipse.org/tools/orbit/downloads/drops2/I20210306035740/repository/plugins/org.apache.commons.collections4_4.4.0.v20200420-1700.jar + +plugin@org.apache.commons.compress,1.19.0=GET,https://download.eclipse.org/tools/orbit/downloads/drops2/I20210306035740/repository/plugins/org.apache.commons.compress_1.19.0.v20200106-2343.jar + +plugin@org.apache.xmlbeans,3.1.0=GET,https://download.eclipse.org/tools/orbit/downloads/drops2/I20210306035740/repository/plugins/org.apache.xmlbeans_3.1.0.v20200922-1359.jar \ No newline at end of file diff --git a/viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/web.xml b/viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/web.xml index bfbd1876777..b416c198e0b 100644 --- a/viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/web.xml +++ b/viewer/org.eclipse.birt.report.viewer/birt/WEB-INF/web.xml @@ -247,88 +247,88 @@ Automatically created by Apache Tomcat JspC. - org.apache.jsp.CancelTask_jsp - org.apache.jsp.CancelTask_jsp + org.apache.jsp.webcontent.birt.pages.common.Error_jsp + org.apache.jsp.webcontent.birt.pages.common.Error_jsp - org.apache.jsp.webcontent.birt.pages.dialog.ExceptionDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.ExceptionDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.parameter.RadioButtonParameterFragment_jsp + org.apache.jsp.webcontent.birt.pages.parameter.RadioButtonParameterFragment_jsp - org.apache.jsp.webcontent.birt.pages.common.Error_jsp - org.apache.jsp.webcontent.birt.pages.common.Error_jsp + org.apache.jsp.webcontent.birt.pages.common.Attributes_jsp + org.apache.jsp.webcontent.birt.pages.common.Attributes_jsp - org.apache.jsp.webcontent.birt.pages.dialog.ConfirmationDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.ConfirmationDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.parameter.ParameterGroupFragment_jsp + org.apache.jsp.webcontent.birt.pages.parameter.ParameterGroupFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.ExportDataDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.ExportDataDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.common.processing_jsp + org.apache.jsp.webcontent.birt.pages.common.processing_jsp - org.apache.jsp.index_jsp - org.apache.jsp.index_jsp + org.apache.jsp.webcontent.birt.pages.common.Locale_jsp + org.apache.jsp.webcontent.birt.pages.common.Locale_jsp - org.apache.jsp.webcontent.birt.pages.common.Locale_jsp - org.apache.jsp.webcontent.birt.pages.common.Locale_jsp + org.apache.jsp.CancelTask_jsp + org.apache.jsp.CancelTask_jsp - org.apache.jsp.webcontent.birt.pages.control.TocFragment_jsp - org.apache.jsp.webcontent.birt.pages.control.TocFragment_jsp + org.apache.jsp.webcontent.birt.pages.parameter.ComboBoxParameterFragment_jsp + org.apache.jsp.webcontent.birt.pages.parameter.ComboBoxParameterFragment_jsp - org.apache.jsp.webcontent.birt.pages.control.ProgressBarFragment_jsp - org.apache.jsp.webcontent.birt.pages.control.ProgressBarFragment_jsp + org.apache.jsp.webcontent.birt.pages.parameter.CheckboxParameterFragment_jsp + org.apache.jsp.webcontent.birt.pages.parameter.CheckboxParameterFragment_jsp - org.apache.jsp.webcontent.birt.pages.common.Attributes_jsp - org.apache.jsp.webcontent.birt.pages.common.Attributes_jsp + org.apache.jsp.webcontent.birt.pages.layout.DocumentFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.DocumentFragment_jsp - org.apache.jsp.webcontent.birt.pages.common.processing_jsp - org.apache.jsp.webcontent.birt.pages.common.processing_jsp + org.apache.jsp.webcontent.birt.pages.parameter.TextBoxParameterFragment_jsp + org.apache.jsp.webcontent.birt.pages.parameter.TextBoxParameterFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.DialogContainerFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.DialogContainerFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.ParameterFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.ParameterFragment_jsp - org.apache.jsp.webcontent.birt.pages.control.ToolbarFragment_jsp - org.apache.jsp.webcontent.birt.pages.control.ToolbarFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.ReportContentFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.ReportContentFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.ExportReportDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.ExportReportDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.RequesterFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.RequesterFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.ParameterDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.ParameterDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.parameter.HiddenParameterFragment_jsp + org.apache.jsp.webcontent.birt.pages.parameter.HiddenParameterFragment_jsp - org.apache.jsp.webcontent.birt.pages.control.NavigationbarFragment_jsp - org.apache.jsp.webcontent.birt.pages.control.NavigationbarFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.RunFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.RunFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.ParameterFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.ParameterFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.ReportDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.ReportDialogFragment_jsp @@ -337,28 +337,28 @@ Automatically created by Apache Tomcat JspC. - org.apache.jsp.webcontent.birt.pages.layout.DocumentFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.DocumentFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.ReportFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.ReportFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.ReportContentFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.ReportContentFragment_jsp + org.apache.jsp.webcontent.birt.pages.control.TocFragment_jsp + org.apache.jsp.webcontent.birt.pages.control.TocFragment_jsp - org.apache.jsp.webcontent.birt.pages.parameter.HiddenParameterFragment_jsp - org.apache.jsp.webcontent.birt.pages.parameter.HiddenParameterFragment_jsp + org.apache.jsp.webcontent.birt.pages.control.ProgressBarFragment_jsp + org.apache.jsp.webcontent.birt.pages.control.ProgressBarFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.ReportDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.ReportDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.control.NavigationbarFragment_jsp + org.apache.jsp.webcontent.birt.pages.control.NavigationbarFragment_jsp - org.apache.jsp.webcontent.birt.pages.parameter.CheckboxParameterFragment_jsp - org.apache.jsp.webcontent.birt.pages.parameter.CheckboxParameterFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.FramesetFragment_jsp + org.apache.jsp.webcontent.birt.pages.layout.FramesetFragment_jsp @@ -367,138 +367,138 @@ Automatically created by Apache Tomcat JspC. - org.apache.jsp.webcontent.birt.pages.layout.ReportFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.ReportFragment_jsp + org.apache.jsp.webcontent.birt.pages.control.ToolbarFragment_jsp + org.apache.jsp.webcontent.birt.pages.control.ToolbarFragment_jsp - org.apache.jsp.webcontent.birt.pages.parameter.ParameterGroupFragment_jsp - org.apache.jsp.webcontent.birt.pages.parameter.ParameterGroupFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.ExceptionDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.ExceptionDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.PrintReportServerDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.PrintReportServerDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.ParameterDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.ParameterDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.SimpleExportDataDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.dialog.SimpleExportDataDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.ExportDataDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.ExportDataDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.parameter.ComboBoxParameterFragment_jsp - org.apache.jsp.webcontent.birt.pages.parameter.ComboBoxParameterFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.SimpleExportDataDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.SimpleExportDataDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.FramesetFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.FramesetFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.DialogContainerFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.DialogContainerFragment_jsp - org.apache.jsp.webcontent.birt.pages.parameter.TextBoxParameterFragment_jsp - org.apache.jsp.webcontent.birt.pages.parameter.TextBoxParameterFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.PrintReportServerDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.PrintReportServerDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.RunFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.RunFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.ConfirmationDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.ConfirmationDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.parameter.RadioButtonParameterFragment_jsp - org.apache.jsp.webcontent.birt.pages.parameter.RadioButtonParameterFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.ExportReportDialogFragment_jsp + org.apache.jsp.webcontent.birt.pages.dialog.ExportReportDialogFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.RequesterFragment_jsp - org.apache.jsp.webcontent.birt.pages.layout.RequesterFragment_jsp + org.apache.jsp.index_jsp + org.apache.jsp.index_jsp - org.apache.jsp.CancelTask_jsp - /CancelTask.jsp + org.apache.jsp.webcontent.birt.pages.common.Error_jsp + /webcontent/birt/pages/common/Error.jsp - org.apache.jsp.webcontent.birt.pages.dialog.ExceptionDialogFragment_jsp - /webcontent/birt/pages/dialog/ExceptionDialogFragment.jsp + org.apache.jsp.webcontent.birt.pages.common.Attributes_jsp + /webcontent/birt/pages/common/Attributes.jsp - org.apache.jsp.webcontent.birt.pages.dialog.ConfirmationDialogFragment_jsp - /webcontent/birt/pages/dialog/ConfirmationDialogFragment.jsp + org.apache.jsp.webcontent.birt.pages.parameter.ParameterGroupFragment_jsp + /webcontent/birt/pages/parameter/ParameterGroupFragment.jsp - org.apache.jsp.webcontent.birt.pages.common.Error_jsp - /webcontent/birt/pages/common/Error.jsp + org.apache.jsp.webcontent.birt.pages.common.processing_jsp + /webcontent/birt/pages/common/processing.jsp - org.apache.jsp.webcontent.birt.pages.dialog.ExportDataDialogFragment_jsp - /webcontent/birt/pages/dialog/ExportDataDialogFragment.jsp + org.apache.jsp.webcontent.birt.pages.common.Locale_jsp + /webcontent/birt/pages/common/Locale.jsp - org.apache.jsp.index_jsp - /index.jsp + org.apache.jsp.CancelTask_jsp + /CancelTask.jsp - org.apache.jsp.webcontent.birt.pages.common.Locale_jsp - /webcontent/birt/pages/common/Locale.jsp + org.apache.jsp.webcontent.birt.pages.parameter.RadioButtonParameterFragment_jsp + /webcontent/birt/pages/parameter/RadioButtonParameterFragment.jsp - org.apache.jsp.webcontent.birt.pages.control.TocFragment_jsp - /webcontent/birt/pages/control/TocFragment.jsp + org.apache.jsp.webcontent.birt.pages.parameter.ComboBoxParameterFragment_jsp + /webcontent/birt/pages/parameter/ComboBoxParameterFragment.jsp - org.apache.jsp.webcontent.birt.pages.control.ProgressBarFragment_jsp - /webcontent/birt/pages/control/ProgressBarFragment.jsp + org.apache.jsp.webcontent.birt.pages.parameter.CheckboxParameterFragment_jsp + /webcontent/birt/pages/parameter/CheckboxParameterFragment.jsp - org.apache.jsp.webcontent.birt.pages.common.Attributes_jsp - /webcontent/birt/pages/common/Attributes.jsp + org.apache.jsp.webcontent.birt.pages.layout.DocumentFragment_jsp + /webcontent/birt/pages/layout/DocumentFragment.jsp - org.apache.jsp.webcontent.birt.pages.common.processing_jsp - /webcontent/birt/pages/common/processing.jsp + org.apache.jsp.webcontent.birt.pages.parameter.TextBoxParameterFragment_jsp + /webcontent/birt/pages/parameter/TextBoxParameterFragment.jsp - org.apache.jsp.webcontent.birt.pages.dialog.DialogContainerFragment_jsp - /webcontent/birt/pages/dialog/DialogContainerFragment.jsp + org.apache.jsp.webcontent.birt.pages.layout.ParameterFragment_jsp + /webcontent/birt/pages/layout/ParameterFragment.jsp - org.apache.jsp.webcontent.birt.pages.control.ToolbarFragment_jsp - /webcontent/birt/pages/control/ToolbarFragment.jsp + org.apache.jsp.webcontent.birt.pages.layout.ReportContentFragment_jsp + /webcontent/birt/pages/layout/ReportContentFragment.jsp - org.apache.jsp.webcontent.birt.pages.dialog.ExportReportDialogFragment_jsp - /webcontent/birt/pages/dialog/ExportReportDialogFragment.jsp + org.apache.jsp.webcontent.birt.pages.layout.RequesterFragment_jsp + /webcontent/birt/pages/layout/RequesterFragment.jsp - org.apache.jsp.webcontent.birt.pages.dialog.ParameterDialogFragment_jsp - /webcontent/birt/pages/dialog/ParameterDialogFragment.jsp + org.apache.jsp.webcontent.birt.pages.parameter.HiddenParameterFragment_jsp + /webcontent/birt/pages/parameter/HiddenParameterFragment.jsp - org.apache.jsp.webcontent.birt.pages.control.NavigationbarFragment_jsp - /webcontent/birt/pages/control/NavigationbarFragment.jsp + org.apache.jsp.webcontent.birt.pages.layout.RunFragment_jsp + /webcontent/birt/pages/layout/RunFragment.jsp - org.apache.jsp.webcontent.birt.pages.layout.ParameterFragment_jsp - /webcontent/birt/pages/layout/ParameterFragment.jsp + org.apache.jsp.webcontent.birt.pages.layout.ReportDialogFragment_jsp + /webcontent/birt/pages/layout/ReportDialogFragment.jsp @@ -507,28 +507,28 @@ Automatically created by Apache Tomcat JspC. - org.apache.jsp.webcontent.birt.pages.layout.DocumentFragment_jsp - /webcontent/birt/pages/layout/DocumentFragment.jsp + org.apache.jsp.webcontent.birt.pages.layout.ReportFragment_jsp + /webcontent/birt/pages/layout/ReportFragment.jsp - org.apache.jsp.webcontent.birt.pages.layout.ReportContentFragment_jsp - /webcontent/birt/pages/layout/ReportContentFragment.jsp + org.apache.jsp.webcontent.birt.pages.control.TocFragment_jsp + /webcontent/birt/pages/control/TocFragment.jsp - org.apache.jsp.webcontent.birt.pages.parameter.HiddenParameterFragment_jsp - /webcontent/birt/pages/parameter/HiddenParameterFragment.jsp + org.apache.jsp.webcontent.birt.pages.control.ProgressBarFragment_jsp + /webcontent/birt/pages/control/ProgressBarFragment.jsp - org.apache.jsp.webcontent.birt.pages.layout.ReportDialogFragment_jsp - /webcontent/birt/pages/layout/ReportDialogFragment.jsp + org.apache.jsp.webcontent.birt.pages.control.NavigationbarFragment_jsp + /webcontent/birt/pages/control/NavigationbarFragment.jsp - org.apache.jsp.webcontent.birt.pages.parameter.CheckboxParameterFragment_jsp - /webcontent/birt/pages/parameter/CheckboxParameterFragment.jsp + org.apache.jsp.webcontent.birt.pages.layout.FramesetFragment_jsp + /webcontent/birt/pages/layout/FramesetFragment.jsp @@ -537,53 +537,53 @@ Automatically created by Apache Tomcat JspC. - org.apache.jsp.webcontent.birt.pages.layout.ReportFragment_jsp - /webcontent/birt/pages/layout/ReportFragment.jsp + org.apache.jsp.webcontent.birt.pages.control.ToolbarFragment_jsp + /webcontent/birt/pages/control/ToolbarFragment.jsp - org.apache.jsp.webcontent.birt.pages.parameter.ParameterGroupFragment_jsp - /webcontent/birt/pages/parameter/ParameterGroupFragment.jsp + org.apache.jsp.webcontent.birt.pages.dialog.ExceptionDialogFragment_jsp + /webcontent/birt/pages/dialog/ExceptionDialogFragment.jsp - org.apache.jsp.webcontent.birt.pages.dialog.PrintReportServerDialogFragment_jsp - /webcontent/birt/pages/dialog/PrintReportServerDialogFragment.jsp + org.apache.jsp.webcontent.birt.pages.dialog.ParameterDialogFragment_jsp + /webcontent/birt/pages/dialog/ParameterDialogFragment.jsp - org.apache.jsp.webcontent.birt.pages.dialog.SimpleExportDataDialogFragment_jsp - /webcontent/birt/pages/dialog/SimpleExportDataDialogFragment.jsp + org.apache.jsp.webcontent.birt.pages.dialog.ExportDataDialogFragment_jsp + /webcontent/birt/pages/dialog/ExportDataDialogFragment.jsp - org.apache.jsp.webcontent.birt.pages.parameter.ComboBoxParameterFragment_jsp - /webcontent/birt/pages/parameter/ComboBoxParameterFragment.jsp + org.apache.jsp.webcontent.birt.pages.dialog.SimpleExportDataDialogFragment_jsp + /webcontent/birt/pages/dialog/SimpleExportDataDialogFragment.jsp - org.apache.jsp.webcontent.birt.pages.layout.FramesetFragment_jsp - /webcontent/birt/pages/layout/FramesetFragment.jsp + org.apache.jsp.webcontent.birt.pages.dialog.DialogContainerFragment_jsp + /webcontent/birt/pages/dialog/DialogContainerFragment.jsp - org.apache.jsp.webcontent.birt.pages.parameter.TextBoxParameterFragment_jsp - /webcontent/birt/pages/parameter/TextBoxParameterFragment.jsp + org.apache.jsp.webcontent.birt.pages.dialog.PrintReportServerDialogFragment_jsp + /webcontent/birt/pages/dialog/PrintReportServerDialogFragment.jsp - org.apache.jsp.webcontent.birt.pages.layout.RunFragment_jsp - /webcontent/birt/pages/layout/RunFragment.jsp + org.apache.jsp.webcontent.birt.pages.dialog.ConfirmationDialogFragment_jsp + /webcontent/birt/pages/dialog/ConfirmationDialogFragment.jsp - org.apache.jsp.webcontent.birt.pages.parameter.RadioButtonParameterFragment_jsp - /webcontent/birt/pages/parameter/RadioButtonParameterFragment.jsp + org.apache.jsp.webcontent.birt.pages.dialog.ExportReportDialogFragment_jsp + /webcontent/birt/pages/dialog/ExportReportDialogFragment.jsp - org.apache.jsp.webcontent.birt.pages.layout.RequesterFragment_jsp - /webcontent/birt/pages/layout/RequesterFragment.jsp + org.apache.jsp.index_jsp + /index.jsp