Lines 850-856
Link Here
|
850 |
@Test |
850 |
@Test |
851 |
public void testApplyObjectDate() throws ParseException { |
851 |
public void testApplyObjectDate() throws ParseException { |
852 |
CellFormat cf1 = CellFormat.getInstance("m/d/yyyy"); |
852 |
CellFormat cf1 = CellFormat.getInstance("m/d/yyyy"); |
853 |
Date date1 = new SimpleDateFormat("M/d/y", Locale.ROOT).parse("01/11/2012"); |
853 |
SimpleDateFormat sdf = new SimpleDateFormat("M/d/y", Locale.ROOT); |
|
|
854 |
sdf.setTimeZone(TimeZone.getTimeZone("CET")); |
855 |
Date date1 = sdf.parse("01/11/2012"); |
854 |
assertEquals("1/11/2012", cf1.apply(date1).text); |
856 |
assertEquals("1/11/2012", cf1.apply(date1).text); |
855 |
} |
857 |
} |
856 |
|
858 |
|