()
| 358 | } |
| 359 | |
| 360 | @Test |
| 361 | public void test13(){ |
| 362 | Lunar lunar = Lunar.fromYmdHms(1991, 4, 5, 3, 37, 0); |
| 363 | EightChar eightChar = lunar.getEightChar(); |
| 364 | Assert.assertEquals("年柱", "辛未", eightChar.getYear()); |
| 365 | Assert.assertEquals("月柱", "癸巳", eightChar.getMonth()); |
| 366 | Assert.assertEquals("日柱", "戊子", eightChar.getDay()); |
| 367 | Assert.assertEquals("时柱", "甲寅", eightChar.getTime()); |
| 368 | } |
| 369 | |
| 370 | @Test |
| 371 | public void test14() { |
nothing calls this directly
no test coverage detected