Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Orekit
Orekit
Commits
90ad5112
Commit
90ad5112
authored
Jan 22, 2023
by
Luc Maisonobe
Browse files
Removed print statement in test.
parent
1bfc089f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/test/java/org/orekit/utils/ParameterDriverTest.java
View file @
90ad5112
...
...
@@ -35,9 +35,6 @@ public class ParameterDriverTest {
p1
.
addSpanAtDate
(
date
);
p1
.
setValue
(
3.0
,
date
.
shiftedBy
(
10
));
for
(
Span
<
String
>
span
=
p1
.
getNamesSpanMap
().
getFirstSpan
();
span
!=
null
;
span
=
span
.
next
())
{
System
.
out
.
println
(
span
.
getData
());
}
Assertions
.
assertEquals
(
3.0
,
p1
.
getValue
(
date
.
shiftedBy
(
10
)),
1
e
-
10
);
Assertions
.
assertEquals
(
0.0
,
p1
.
getValue
(
date
.
shiftedBy
(-
10
)),
1
e
-
10
);
Assertions
.
assertEquals
(
"Span"
+
p1
.
getName
()
+
Integer
.
toString
(
0
),
p1
.
getNameSpan
(
date
.
shiftedBy
(-
10
)));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment