()
| 348 | } |
| 349 | |
| 350 | @Test |
| 351 | public void test11(){ |
| 352 | Lunar lunar = Lunar.fromYmdHms(1987, 12, 28, 23, 30, 0); |
| 353 | EightChar eightChar = lunar.getEightChar(); |
| 354 | Assert.assertEquals("年柱", "戊辰", eightChar.getYear()); |
| 355 | Assert.assertEquals("月柱", "甲寅", eightChar.getMonth()); |
| 356 | Assert.assertEquals("日柱", "庚子", eightChar.getDay()); |
| 357 | Assert.assertEquals("时柱", "戊子", eightChar.getTime()); |
| 358 | } |
| 359 | |
| 360 | @Test |
| 361 | public void test13(){ |
nothing calls this directly
no test coverage detected