Example #1
0
        private void ExecuteAndVerifyLongitude(DateTime targetTimestamp, double expectedLongitude)
        {
            _step.TargetTimestamp = targetTimestamp;
            _step.Run(new StepExecutionContext());

            Assert.NotNull(_step.Longitude);
            Angle.FromRadians(_step.Longitude !.Value).Degrees.Should().BeApproximately(expectedLongitude, Precision);
        }