()
| 41 | } |
| 42 | |
| 43 | @Test |
| 44 | public void test4(){ |
| 45 | Solar solar = new Solar(2011,8,12); |
| 46 | Lunar lunar = solar.getLunar(); |
| 47 | Fu fu = lunar.getFu(); |
| 48 | Assert.assertEquals(solar.toYmd(),"中伏",fu.toString()); |
| 49 | Assert.assertEquals(solar.toYmd(),"中伏第20天",fu.toFullString()); |
| 50 | } |
| 51 | |
| 52 | @Test |
| 53 | public void test5(){ |
nothing calls this directly
no test coverage detected