You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by on...@apache.org on 2015/12/04 11:47:31 UTC

svn commit: r1717928 - /poi/trunk/src/testcases/org/apache/poi/ss/usermodel/TestDataFormatter.java

Author: onealj
Date: Fri Dec  4 10:47:31 2015
New Revision: 1717928

URL: http://svn.apache.org/viewvc?rev=1717928&view=rev
Log:
whitespace

Modified:
    poi/trunk/src/testcases/org/apache/poi/ss/usermodel/TestDataFormatter.java

Modified: poi/trunk/src/testcases/org/apache/poi/ss/usermodel/TestDataFormatter.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/usermodel/TestDataFormatter.java?rev=1717928&r1=1717927&r2=1717928&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/ss/usermodel/TestDataFormatter.java (original)
+++ poi/trunk/src/testcases/org/apache/poi/ss/usermodel/TestDataFormatter.java Fri Dec  4 10:47:31 2015
@@ -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



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org