@Test
public void testModifiedFollowingDay() {
final BusinessDayConvention convention = BusinessDayConventionFactory.INSTANCE.getBusinessDayConvention("Modified Following");
assertNotNull(convention);
final TemporalAdjuster adjuster = convention.getTemporalAdjuster(_calendar_UK);
assertNotNull(adjuster);
assertDate(adjuster, LocalDate.of(2009, 12, 31), LocalDate.of(2009, 12, 31));
assertDate(adjuster, LocalDate.of(2010, 1, 1), LocalDate.of(2010, 1, 4)); // Fri 1 Jan -> Mon 4 Jan
assertDate(adjuster, LocalDate.of(2010, 1, 2), LocalDate.of(2010, 1, 4));
assertDate(adjuster, LocalDate.of(2010, 1, 3), LocalDate.of(2010, 1, 4));