()
| 12 | public class JulianDayTest { |
| 13 | |
| 14 | @Test |
| 15 | public void testSolar2JD() { |
| 16 | Solar solar = Solar.fromYmd(2020, 7, 15); |
| 17 | Assert.assertEquals(2459045.5, solar.getJulianDay(), 0); |
| 18 | } |
| 19 | |
| 20 | @Test |
| 21 | public void testJD2Solar() { |
nothing calls this directly
no test coverage detected