22 * #%L
33 * Year Month Calendar Add-on
44 * %%
5- * Copyright (C) 2021 - 2023 Flowing Code
5+ * Copyright (C) 2021 - 2024 Flowing Code
66 * %%
77 * Licensed under the Apache License, Version 2.0 (the "License");
88 * you may not use this file except in compliance with the License.
@@ -34,6 +34,8 @@ public class TestUtils {
3434 HOLIDAYS .addAll (computeEasterHolidays (2021 , 4 , 4 ));
3535 HOLIDAYS .addAll (computeEasterHolidays (2022 , 4 , 17 ));
3636 HOLIDAYS .addAll (computeEasterHolidays (2023 , 4 , 9 ));
37+ HOLIDAYS .addAll (computeEasterHolidays (2024 , 3 , 31 ));
38+ HOLIDAYS .addAll (computeEasterHolidays (2025 , 4 , 20 ));
3739
3840 HOLIDAYS .add (LocalDate .of (2021 , 5 , 24 ));
3941 HOLIDAYS .add (LocalDate .of (2021 , 6 , 21 ));
@@ -42,6 +44,7 @@ public class TestUtils {
4244 HOLIDAYS .add (LocalDate .of (2022 , 8 , 15 ));
4345 HOLIDAYS .add (LocalDate .of (2021 , 10 , 8 ));
4446 HOLIDAYS .add (LocalDate .of (2021 , 10 , 11 ));
47+
4548 HOLIDAYS .add (LocalDate .of (2022 , 10 , 7 ));
4649 HOLIDAYS .add (LocalDate .of (2022 , 10 , 10 ));
4750 HOLIDAYS .add (LocalDate .of (2021 , 11 , 20 ));
@@ -50,13 +53,20 @@ public class TestUtils {
5053 HOLIDAYS .add (LocalDate .of (2022 , 11 , 21 ));
5154 HOLIDAYS .add (LocalDate .of (2022 , 12 , 9 ));
5255 HOLIDAYS .add (LocalDate .of (2022 , 12 , 25 ));
53-
56+
5457 HOLIDAYS .add (LocalDate .of (2023 , 5 , 26 ));
5558 HOLIDAYS .add (LocalDate .of (2023 , 6 , 19 ));
5659 HOLIDAYS .add (LocalDate .of (2023 , 8 , 21 ));
5760 HOLIDAYS .add (LocalDate .of (2023 , 10 , 13 ));
5861 HOLIDAYS .add (LocalDate .of (2023 , 10 , 16 ));
5962 HOLIDAYS .add (LocalDate .of (2023 , 11 , 20 ));
63+
64+ HOLIDAYS .add (LocalDate .of (2024 , 4 , 1 ));
65+ HOLIDAYS .add (LocalDate .of (2024 , 6 , 17 ));
66+ HOLIDAYS .add (LocalDate .of (2024 , 6 , 21 ));
67+ HOLIDAYS .add (LocalDate .of (2024 , 10 , 11 ));
68+ HOLIDAYS .add (LocalDate .of (2024 , 11 , 18 ));
69+
6070 }
6171
6272 private static List <LocalDate > computeEasterHolidays (int y , int m , int d ) {
0 commit comments