()
| 32 | } |
| 33 | |
| 34 | @Test |
| 35 | public void test3(){ |
| 36 | Solar solar = new Solar(2011,7,24); |
| 37 | Lunar lunar = solar.getLunar(); |
| 38 | Fu fu = lunar.getFu(); |
| 39 | Assert.assertEquals(solar.toYmd(),"中伏",fu.toString()); |
| 40 | Assert.assertEquals(solar.toYmd(),"中伏第1天",fu.toFullString()); |
| 41 | } |
| 42 | |
| 43 | @Test |
| 44 | public void test4(){ |
nothing calls this directly
no test coverage detected