public void EccentricityTest(double jd, double expectedEccentricity)
 {
     double eccentricity = AASEarth.Eccentricity(jd);
     Assert.Equal(expectedEccentricity, eccentricity);
 }