()
| 122 | } |
| 123 | |
| 124 | @Test |
| 125 | public void test1() { |
| 126 | Holiday holiday = HolidayUtil.getHoliday(2016,10,4); |
| 127 | Assert.assertNotNull(holiday); |
| 128 | Assert.assertNotNull(holiday.getTarget()); |
| 129 | Assert.assertEquals("2016-10-01",holiday.getTarget()); |
| 130 | } |
| 131 | |
| 132 | @Test |
| 133 | public void testRemove() { |
nothing calls this directly
no test coverage detected