Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
derTobsch committed Jan 4, 2025
1 parent feff53b commit 6eea1a1
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package de.focus_shift.jollyday.tests;

import de.focus_shift.jollyday.core.HolidayCalendar;
import org.junit.jupiter.api.Test;

import java.util.Arrays;

import static de.focus_shift.jollyday.core.HolidayManager.getInstance;
import static de.focus_shift.jollyday.core.ManagerParameters.create;

class CalendarHierarchyTest {

@Test
void name() {
Arrays.stream(HolidayCalendar.values()).forEach(holidayCalendar -> {
System.out.println(getInstance(create(holidayCalendar)).getCalendarHierarchy());
});
}
}

0 comments on commit 6eea1a1

Please sign in to comment.