()
| 54 | } |
| 55 | |
| 56 | @Test |
| 57 | public void test4() { |
| 58 | Solar solar = new Solar(2022, 3, 9, 20, 51, 0); |
| 59 | Lunar lunar = solar.getLunar(); |
| 60 | EightChar eightChar = lunar.getEightChar(); |
| 61 | Yun yun = eightChar.getYun(1); |
| 62 | Assert.assertEquals("起运阳历", "2030-12-19", yun.getStartSolar().toYmd()); |
| 63 | } |
| 64 | |
| 65 | @Test |
| 66 | public void test5() { |
nothing calls this directly
no test coverage detected