()
| 175 | } |
| 176 | |
| 177 | @Test |
| 178 | public void testNext() { |
| 179 | Solar solar = new Solar(2020, 1, 10, 12, 0, 0); |
| 180 | Lunar lunar = solar.getLunar(); |
| 181 | for (int i = -50; i < 50; i++) { |
| 182 | Assert.assertEquals("推移天数:" + i, solar.next(i).getLunar().toFullString(), lunar.next(i).toFullString()); |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | @Test |
| 187 | public void test27() { |
nothing calls this directly
no test coverage detected