1 package org.orekit.files.ccsds.ndm.odm;
2
3 import org.hamcrest.MatcherAssert;
4 import org.hamcrest.Matchers;
5 import org.junit.jupiter.api.Test;
6 import org.orekit.files.ccsds.definitions.OrekitCcsdsFrameMapper;
7
8
9
10
11
12
13 public class CartesianCovarianceTest {
14
15
16 @Test
17 @Deprecated
18 public void testDeprecatedConstructor() {
19
20 CartesianCovariance actual = new CartesianCovariance(() -> null);
21
22
23 MatcherAssert.assertThat(actual.getFrameMapper(),
24 Matchers.is(new OrekitCcsdsFrameMapper()));
25 }
26
27 }