()
| 23 | } |
| 24 | |
| 25 | @Test |
| 26 | public void test2(){ |
| 27 | Solar solar = new Solar(2011,7,23); |
| 28 | Lunar lunar = solar.getLunar(); |
| 29 | Fu fu = lunar.getFu(); |
| 30 | Assert.assertEquals(solar.toYmd(),"初伏",fu.toString()); |
| 31 | Assert.assertEquals(solar.toYmd(),"初伏第10天",fu.toFullString()); |
| 32 | } |
| 33 | |
| 34 | @Test |
| 35 | public void test3(){ |
nothing calls this directly
no test coverage detected