()
| 14 | public class FuTest { |
| 15 | |
| 16 | @Test |
| 17 | public void test1(){ |
| 18 | Solar solar = new Solar(2011,7,14); |
| 19 | Lunar lunar = solar.getLunar(); |
| 20 | Fu fu = lunar.getFu(); |
| 21 | Assert.assertEquals(solar.toYmd(),"初伏",fu.toString()); |
| 22 | Assert.assertEquals(solar.toYmd(),"初伏第1天",fu.toFullString()); |
| 23 | } |
| 24 | |
| 25 | @Test |
| 26 | public void test2(){ |
nothing calls this directly
no test coverage detected