use of com.alibaba.fastjson.util.TypeUtils.castToDate in project fastjson by alibaba.
the class DefaultExtJSONParserTest method testCastCalendar.
public void testCastCalendar() throws Exception {
Calendar c = Calendar.getInstance();
Date d = TypeUtils.castToDate(c);
Assert.assertEquals(c.getTime(), d);
}
Aggregations