Package org.kuali.rice.core.api.datetime

Examples of org.kuali.rice.core.api.datetime.DateTimeService


    final String dtFormat = "dd MMM yyyy hh:mm a";
    when(config.getProperty(CoreConstants.STRING_TO_DATE_FORMATS))
        .thenReturn(dtFormat);
    ConfigContext.overrideConfig(Thread.currentThread()
        .getContextClassLoader(), config);
    DateTimeService dtSvc = mock(DateTimeService.class);
    SimpleDateFormat sdf = new SimpleDateFormat(dtFormat);
    when(dtSvc.toDateTimeString(date)).thenReturn(sdf.format(date));
    attributeValueReader.setDateTimeService(dtSvc);
    // create allowed formats
    List<String> allowedFormats = new ArrayList<String>();
    allowedFormats.add(dtFormat);
    allowedFormats.add("d MMM yyyy hh:mm a");
View Full Code Here


    event.setType(eventType);
   
    SimpleDateFormat sdf = new SimpleDateFormat(MartinlawConstants.DEFAULT_TIMESTAMP_FORMAT);
    final String formattedDate = sdf.format(event.getStartDate());
   
    DateTimeService dtSvc = mock(DateTimeService.class);
    when(dtSvc.toDateTimeString(same(event.getStartDate()))).thenReturn(formattedDate);
    event.setDateTimeService(dtSvc);
   
    return event;
  }
View Full Code Here

TOP

Related Classes of org.kuali.rice.core.api.datetime.DateTimeService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.