]> source.dussan.org Git - poi.git/commitdiff
Change logger.log to System.out to print out one line for each file that is handled...
authorDominik Stadler <centic@apache.org>
Tue, 31 May 2016 13:52:16 +0000 (13:52 +0000)
committerDominik Stadler <centic@apache.org>
Tue, 31 May 2016 13:52:16 +0000 (13:52 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1746275 13f79535-47bb-0310-9956-ffa450edef68

src/integrationtest/org/apache/poi/TestAllFiles.java

index fc4a6f56e03427c96f6d90544dc3c5aa98e0375d..29e076b2d0519cdfd6a40cbdd12ac659a201affe 100644 (file)
 package org.apache.poi;
 
 
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertNotNull;
-
-import java.io.BufferedInputStream;
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.InputStream;
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Locale;
-import java.util.Map;
-import java.util.Set;
-
 import org.apache.poi.hwpf.OldWordFileFormatException;
 import org.apache.poi.stress.*;
-import org.apache.poi.util.POILogFactory;
-import org.apache.poi.util.POILogger;
 import org.apache.tools.ant.DirectoryScanner;
 import org.junit.Test;
 import org.junit.runner.RunWith;
@@ -43,6 +26,15 @@ import org.junit.runners.Parameterized;
 import org.junit.runners.Parameterized.Parameter;
 import org.junit.runners.Parameterized.Parameters;
 
+import java.io.BufferedInputStream;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.InputStream;
+import java.util.*;
+
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+
 /**
  *  This is an integration test which performs various actions on all stored test-files and tries
  *  to reveal problems which are introduced, but not covered (yet) by unit tests. 
@@ -69,8 +61,6 @@ import org.junit.runners.Parameterized.Parameters;
  */
 @RunWith(Parameterized.class)
 public class TestAllFiles {
-    private final static POILogger logger = POILogFactory.getLogger(TestAllFiles.class);
-
     private static final File ROOT_DIR = new File("test-data");
 
     static final String[] SCAN_EXCLUDES = new String[] { "**/.svn/**", "lost+found" };
@@ -329,7 +319,7 @@ public class TestAllFiles {
 
     @Test
     public void testAllFiles() throws Exception {
-        logger.log(POILogger.INFO, "Reading " + file + " with " + handler.getClass());
+        System.out.println("Reading " + file + " with " + handler.getClass());
         assertNotNull("Unknown file extension for file: " + file + ": " + getExtension(file), handler);
         File inputFile = new File(ROOT_DIR, file);