Beispiel #1
0
        public void TrueInferiorConjunctionTest(double k, PlanetaryObject planetaryObject, EventType eventType, double expectedInferiorConjunction)
        {
            double inferiorConjunction = AASPlanetaryPhenomena.True(k, planetaryObject, eventType);

            Assert.Equal(expectedInferiorConjunction, inferiorConjunction);
        }
Beispiel #2
0
        public void ElongationValueTest(double k, PlanetaryObject planetaryObject, bool bEastern, double expectedElongationValue)
        {
            double elongationValue = AASPlanetaryPhenomena.ElongationValue(k, planetaryObject, bEastern);

            Assert.Equal(expectedElongationValue, elongationValue);
        }
Beispiel #3
0
        public void KTest(double year, PlanetaryObject planetaryObject, EventType eventType, double expectedK)
        {
            double k = AASPlanetaryPhenomena.K(year, planetaryObject, eventType);

            Assert.Equal(expectedK, k);
        }