()
| 12 | public class XingZuoTest { |
| 13 | |
| 14 | @Test |
| 15 | public void test1(){ |
| 16 | Solar solar = new Solar(2020,3,21); |
| 17 | Assert.assertEquals(solar.toYmd(),"白羊",solar.getXingZuo()); |
| 18 | solar = new Solar(2020,4,19); |
| 19 | Assert.assertEquals(solar.toYmd(),"白羊",solar.getXingZuo()); |
| 20 | } |
| 21 | |
| 22 | @Test |
| 23 | public void test2(){ |
nothing calls this directly
no test coverage detected