Skip to content

Fixed issue 949 & Improved TestUtils javadoc

Vincent CUCCHIETTI requested to merge vcucchie/orekit:issue-949 into develop

Hi everyone,

In order to fix this issue, i had to initialize the initial state somehow in the following classes:

  • Ephemeris
  • IntegratedEphemeris
  • AdapterPropagator
  • GLONASSAnalyticalPropagator
  • GNSSPropagator
  • SBASPropagator

The general pattern here is that i used the super.resetInitialState() method in each constructor. If a getInitialState() method was available, then i would do : super.resetInitialState(getInitialState()). Otherwise, I'd had to create the initial state manually which was always feasible.

there are now one additional test per propagator called testIssue949.

I put you as a reviewer @bryan as you contributed a lot to all GNSS/SBAS/GLONASS propagators.

Closes #949 (closed)

Cheers, Vincent

Edited by Vincent CUCCHIETTI

Merge request reports