]> source.dussan.org Git - poi.git/commitdiff
Somehow the Date formatting via SimpleDateFormatter fails on some CI machines, don...
authorDominik Stadler <centic@apache.org>
Thu, 20 Aug 2015 06:29:48 +0000 (06:29 +0000)
committerDominik Stadler <centic@apache.org>
Thu, 20 Aug 2015 06:29:48 +0000 (06:29 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1696710 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/ss/formula/atp/TestWorkdayFunction.java

index 417c56f303355333d63e5785dbc6a20e4e9aac50..94deb2db0ae27976f29d3350173ccd033acd6062 100644 (file)
@@ -32,8 +32,6 @@ import java.util.ArrayList;
 import java.util.Date;
 import java.util.List;
 
-import junit.framework.TestCase;
-
 import org.apache.poi.ss.formula.OperationEvaluationContext;
 import org.apache.poi.ss.formula.TwoDEval;
 import org.apache.poi.ss.formula.eval.AreaEval;
@@ -43,6 +41,8 @@ import org.apache.poi.ss.formula.eval.StringEval;
 import org.apache.poi.ss.formula.eval.ValueEval;
 import org.apache.poi.ss.usermodel.DateUtil;
 
+import junit.framework.TestCase;
+
 /**
  * @author jfaenomoto@gmail.com
  */
@@ -88,57 +88,49 @@ public class TestWorkdayFunction extends TestCase {
     public void testReturnWorkdaysSpanningAWeekendSubtractingDays() {
        String startDate = "2013/09/30";
        int days = -1;
-       String expectedWorkDay = "2013/09/27";
                StringEval stringEval = new StringEval(startDate);
                double numberValue = ((NumberEval) WorkdayFunction.instance.evaluate(new ValueEval[]{
                 stringEval, new NumberEval(days) }, EC)).getNumberValue();
                assertEquals(41544.0, numberValue);
                
                Date date = DateUtil.getJavaDate(numberValue);
-        assertEquals(new Date(113, 8, 27), date);
-        assertEquals(expectedWorkDay, formatter.format(date));
+        assertEquals("Should be 2013/09/27", new Date(113, 8, 27), date);
     }
-    
+
     public void testReturnWorkdaysSpanningAWeekendAddingDays() {
        String startDate = "2013/09/27";
        int days = 1;
-       String expectedWorkDay = "2013/09/30";
                StringEval stringEval = new StringEval(startDate);
                double numberValue = ((NumberEval) WorkdayFunction.instance.evaluate(new ValueEval[]{
                 stringEval, new NumberEval(days) }, EC)).getNumberValue();
         assertEquals(41547.0, numberValue);
 
         Date date = DateUtil.getJavaDate(numberValue);
-               assertEquals(new Date(113, 8, 30), date);
-        assertEquals(expectedWorkDay, formatter.format(date));
+               assertEquals("Should be 2013/09/30", new Date(113, 8, 30), date);
     }
-    
+
     public void testReturnWorkdaysWhenStartIsWeekendAddingDays() {
        String startDate = "2013/10/06";
        int days = 1;
-       String expectedWorkDay = "2013/10/07";
                StringEval stringEval = new StringEval(startDate);
                double numberValue = ((NumberEval) WorkdayFunction.instance.evaluate(new ValueEval[]{
                 stringEval, new NumberEval(days) }, EC)).getNumberValue();
         assertEquals(41554.0, numberValue);
 
         Date date = DateUtil.getJavaDate(numberValue);
-        assertEquals(new Date(113, 9, 7), date);
-        assertEquals(expectedWorkDay, formatter.format(date));
+        assertEquals("Should be 2013/10/07", new Date(113, 9, 7), date);
     }
-    
+
     public void testReturnWorkdaysWhenStartIsWeekendSubtractingDays() {
        String startDate = "2013/10/06";
        int days = -1;
-       String expectedWorkDay = "2013/10/04";
                StringEval stringEval = new StringEval(startDate);
                double numberValue = ((NumberEval) WorkdayFunction.instance.evaluate(new ValueEval[]{
                 stringEval, new NumberEval(days) }, EC)).getNumberValue();
         assertEquals(41551.0, numberValue);
 
         Date date = DateUtil.getJavaDate(numberValue);
-        assertEquals(new Date(113, 9, 4), date);
-        assertEquals(expectedWorkDay, formatter.format(date));
+        assertEquals("Should be 2013/10/04", new Date(113, 9, 4), date);
     }
 
     public void testReturnWorkdaysWithDaysTruncated() {