public void setUp() {
when(deserializationContext.constructCalendar(date)).thenReturn(calendar);
when(deserializationContext.mappingException(Calendar.class)).thenReturn(jsonMappingException);
when(deserializationContext.constructCalendar(new Date(TIME_AS_LONG))).thenReturn(calendar);
deserializer = new CalendarDeserializer();
}