[Schmitzm-commits] r1345 - trunk/src_junit

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Mon Dec 13 13:38:13 CET 2010


Author: mojays
Date: 2010-12-13 13:38:13 +0100 (Mon, 13 Dec 2010)
New Revision: 1345

Modified:
   trunk/src_junit/JxlKloseTest.java
Log:
Excel test with JXL remarked

Modified: trunk/src_junit/JxlKloseTest.java
===================================================================
--- trunk/src_junit/JxlKloseTest.java	2010-12-13 12:25:26 UTC (rev 1344)
+++ trunk/src_junit/JxlKloseTest.java	2010-12-13 12:38:13 UTC (rev 1345)
@@ -20,6 +20,7 @@
 import org.apache.poi.hssf.usermodel.HSSFSheet;
 import org.apache.poi.hssf.usermodel.HSSFWorkbook;
 import org.apache.poi.hssf.util.CellReference;
+import org.junit.Ignore;
 import org.junit.Test;
 
 import schmitzm.junit.TestingClass;
@@ -28,6 +29,7 @@
 public class JxlKloseTest extends TestingClass {
 
 	@Test
+	@Ignore
 	public void testJxl() throws IOException, WriteException, BiffException,
 			FormulaException {
 		InputStream xlsUrl = JxlKloseTest.class
@@ -150,7 +152,7 @@
 		HSSFCell cellB7 = sheet.getRow(b7cellRef.getRow()).getCell(
 				b7cellRef.getCol());
 		assertNotNull(cellB7);
-		log.info("orig value B7 = " + cellB7.getNumericCellValue());
+		log.info("new value B7 = " + cellB7.getNumericCellValue());
 		assertEquals("B8+((-$D$3/100)*B8)", cellB7.getCellFormula());
 		assertEquals(9038.2964, cellB7.getNumericCellValue(), 0.0001);
 		



More information about the Schmitzm-commits mailing list