]> source.dussan.org Git - poi.git/commitdiff
removed debug code accidentally submitted with r693591
authorJosh Micich <josh@apache.org>
Tue, 9 Sep 2008 22:26:28 +0000 (22:26 +0000)
committerJosh Micich <josh@apache.org>
Tue, 9 Sep 2008 22:26:28 +0000 (22:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@693639 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/hssf/model/TestRVA.java

index ac1832d089f742f434c9a3a90b652b22f4278b99..1ec7c92ae9c608111d054d0bc9bda06f2fa0a7e7 100644 (file)
 
 package org.apache.poi.hssf.model;
 
-import java.io.FileInputStream;
-import java.io.FileNotFoundException;
-import java.io.IOException;
-
 import junit.framework.AssertionFailedError;
 import junit.framework.TestCase;
 
@@ -46,21 +42,12 @@ public final class TestRVA extends TestCase {
 
        public void testFormulas() {
                HSSFWorkbook wb = HSSFTestDataSamples.openSampleWorkbook("testRVA.xls");
-               try {
-                       wb = new HSSFWorkbook(new FileInputStream("C:/josh/client/poi/svn/trunk-h2/src/testcases/org/apache/poi/hssf/data/testRVA.xls"));
-               } catch (FileNotFoundException e1) {
-                       throw new RuntimeException(e1);
-               } catch (IOException e1) {
-                       throw new RuntimeException(e1);
-               }
                HSSFSheet sheet = wb.getSheetAt(0);
 
                int countFailures = 0;
                int countErrors = 0;
 
                int rowIx = 0;
-//             rowIx = 34;
-//             rowIx =32;
                while (rowIx < 65535) {
                        HSSFRow row = sheet.getRow(rowIx);
                        if (row == null) {
@@ -85,8 +72,6 @@ public final class TestRVA extends TestCase {
                                e.printStackTrace();
                        }
                        rowIx++;
-//                     if (rowIx>30) break;
-//                     break;
                }
                if (countErrors + countFailures > 0) {
                        String msg = "One or more RVA tests failed: countFailures=" + countFailures