]> source.dussan.org Git - poi.git/commitdiff
whitespace
authorJaven O'Neal <onealj@apache.org>
Fri, 4 Dec 2015 10:47:31 +0000 (10:47 +0000)
committerJaven O'Neal <onealj@apache.org>
Fri, 4 Dec 2015 10:47:31 +0000 (10:47 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1717928 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/ss/usermodel/TestDataFormatter.java

index 421b10c370cdaa9117ee788d85d8b539fda18a02..7dd18ca76085f5a3ab42f6f80e600239fa2d3ae5 100644 (file)
@@ -47,7 +47,7 @@ import org.junit.Test;
 public class TestDataFormatter {
     private static final double _15_MINUTES = 0.041666667;
 
-       /**
+    /**
      * Test that we use the specified locale when deciding
      *   how to format normal numbers
      */
@@ -632,34 +632,34 @@ public class TestDataFormatter {
 
     @Test
     public void testBug54786() {
-               DataFormatter formatter = new DataFormatter();
-               String format = "[h]\"\"h\"\" m\"\"m\"\"";
-               assertTrue(DateUtil.isADateFormat(-1,format));
-               assertTrue(DateUtil.isValidExcelDate(_15_MINUTES));
-               
-               assertEquals("1h 0m", formatter.formatRawCellContents(_15_MINUTES, -1, format, false));
-               assertEquals("0.041666667", formatter.formatRawCellContents(_15_MINUTES, -1, "[h]'h'", false));
-               assertEquals("1h 0m\"", formatter.formatRawCellContents(_15_MINUTES, -1, "[h]\"\"h\"\" m\"\"m\"\"\"", false));
-               assertEquals("1h", formatter.formatRawCellContents(_15_MINUTES, -1, "[h]\"\"h\"\"", false));
-               assertEquals("h1", formatter.formatRawCellContents(_15_MINUTES, -1, "\"\"h\"\"[h]", false));
-               assertEquals("h1", formatter.formatRawCellContents(_15_MINUTES, -1, "\"\"h\"\"h", false));
-               assertEquals(" 60", formatter.formatRawCellContents(_15_MINUTES, -1, " [m]", false));
-               assertEquals("h60", formatter.formatRawCellContents(_15_MINUTES, -1, "\"\"h\"\"[m]", false));
-               assertEquals("m1", formatter.formatRawCellContents(_15_MINUTES, -1, "\"\"m\"\"h", false));
-               
-               try {
-                       assertEquals("1h 0m\"", formatter.formatRawCellContents(_15_MINUTES, -1, "[h]\"\"h\"\" m\"\"m\"\"\"\"", false));
-                       fail("Catches exception because of invalid format, i.e. trailing quoting");
-               } catch (IllegalArgumentException e) {
-                       assertTrue(e.getMessage().contains("Cannot format given Object as a Number"));
-               }
-       }
-       
+        DataFormatter formatter = new DataFormatter();
+        String format = "[h]\"\"h\"\" m\"\"m\"\"";
+        assertTrue(DateUtil.isADateFormat(-1,format));
+        assertTrue(DateUtil.isValidExcelDate(_15_MINUTES));
+        
+        assertEquals("1h 0m", formatter.formatRawCellContents(_15_MINUTES, -1, format, false));
+        assertEquals("0.041666667", formatter.formatRawCellContents(_15_MINUTES, -1, "[h]'h'", false));
+        assertEquals("1h 0m\"", formatter.formatRawCellContents(_15_MINUTES, -1, "[h]\"\"h\"\" m\"\"m\"\"\"", false));
+        assertEquals("1h", formatter.formatRawCellContents(_15_MINUTES, -1, "[h]\"\"h\"\"", false));
+        assertEquals("h1", formatter.formatRawCellContents(_15_MINUTES, -1, "\"\"h\"\"[h]", false));
+        assertEquals("h1", formatter.formatRawCellContents(_15_MINUTES, -1, "\"\"h\"\"h", false));
+        assertEquals(" 60", formatter.formatRawCellContents(_15_MINUTES, -1, " [m]", false));
+        assertEquals("h60", formatter.formatRawCellContents(_15_MINUTES, -1, "\"\"h\"\"[m]", false));
+        assertEquals("m1", formatter.formatRawCellContents(_15_MINUTES, -1, "\"\"m\"\"h", false));
+        
+        try {
+            assertEquals("1h 0m\"", formatter.formatRawCellContents(_15_MINUTES, -1, "[h]\"\"h\"\" m\"\"m\"\"\"\"", false));
+            fail("Catches exception because of invalid format, i.e. trailing quoting");
+        } catch (IllegalArgumentException e) {
+            assertTrue(e.getMessage().contains("Cannot format given Object as a Number"));
+        }
+    }
+    
     @Test
     public void testIsADateFormat() {
-           // first check some cases that should not be a date, also call multiple times to ensure the cache is used
-           assertFalse(DateUtil.isADateFormat(-1, null));
-           assertFalse(DateUtil.isADateFormat(-1, null));
+        // first check some cases that should not be a date, also call multiple times to ensure the cache is used
+        assertFalse(DateUtil.isADateFormat(-1, null));
+        assertFalse(DateUtil.isADateFormat(-1, null));
         assertFalse(DateUtil.isADateFormat(123, null));
         assertFalse(DateUtil.isADateFormat(123, ""));
         assertFalse(DateUtil.isADateFormat(124, ""));
@@ -675,7 +675,7 @@ public class TestDataFormatter {
         assertTrue(DateUtil.isADateFormat(-1, "dd/mm/yy;[red]dd/mm/yy"));
         assertTrue(DateUtil.isADateFormat(-1, "dd/mm/yy;[red]dd/mm/yy"));
         assertTrue(DateUtil.isADateFormat(-1, "[h]"));
-       }
+    }
 
 
     @Test