()
| 60 | } |
| 61 | |
| 62 | @Test |
| 63 | public void testGanZhi3(){ |
| 64 | Lunar lunar = new Lunar(2019,12,12,11,22,0); |
| 65 | EightChar eightChar = lunar.getEightChar(); |
| 66 | Assert.assertEquals("年柱", "己亥", eightChar.getYear()); |
| 67 | Assert.assertEquals("月柱", "丁丑", eightChar.getMonth()); |
| 68 | Assert.assertEquals("日柱", "戊申", eightChar.getDay()); |
| 69 | Assert.assertEquals("时柱", "戊午", eightChar.getTime()); |
| 70 | } |
| 71 | |
| 72 | @Test |
| 73 | public void testHideGan() { |
nothing calls this directly
no test coverage detected