From aad8de7272bc3b2d8eb5760a953ec56da06bdaaf Mon Sep 17 00:00:00 2001
From: Luc Maisonobe <luc@orekit.org>
Date: Fri, 2 May 2014 18:55:02 +0200
Subject: [PATCH] Updated test after refinement change.

---
 .../org/orekit/rugged/core/AbstractAlgorithmTest.java    | 9 ++++++---
 .../rugged/core/duvenhage/DuvenhageAlgorithmTest.java    | 6 ++++--
 2 files changed, 10 insertions(+), 5 deletions(-)

diff --git a/src/test/java/org/orekit/rugged/core/AbstractAlgorithmTest.java b/src/test/java/org/orekit/rugged/core/AbstractAlgorithmTest.java
index 42c8b297..a5e64033 100644
--- a/src/test/java/org/orekit/rugged/core/AbstractAlgorithmTest.java
+++ b/src/test/java/org/orekit/rugged/core/AbstractAlgorithmTest.java
@@ -85,7 +85,8 @@ public abstract class AbstractAlgorithmTest {
         // test direct localization
         Vector3D      position = state.getPVCoordinates(earth.getBodyFrame()).getPosition();
         Vector3D      los      = groundP.subtract(position);
-        GeodeticPoint result   = algorithm.intersection(earth, position, los);
+        GeodeticPoint result   = algorithm.refineIntersection(earth, position, los,
+                                                              algorithm.intersection(earth, position, los));
         checkIntersection(position, los, result);
         Assert.assertEquals(0.0, groundP.distance(earth.transform(result)), 2.0e-9);
 
@@ -110,7 +111,8 @@ public abstract class AbstractAlgorithmTest {
         // test direct localization
         Vector3D      position = state.getPVCoordinates(earth.getBodyFrame()).getPosition();
         Vector3D      los      = groundP.subtract(position);
-        GeodeticPoint result   = algorithm.intersection(earth, position, los);
+        GeodeticPoint result   = algorithm.refineIntersection(earth, position, los,
+                                                              algorithm.intersection(earth, position, los));
         checkIntersection(position, los, result);
         Assert.assertEquals(0.0, groundP.distance(earth.transform(result)), 2.0e-9);
 
@@ -144,7 +146,8 @@ public abstract class AbstractAlgorithmTest {
 
         Vector3D      position = state.getPVCoordinates(earth.getBodyFrame()).getPosition();
         Vector3D      los      = groundP.subtract(position);
-        GeodeticPoint result   = algorithm.intersection(earth, position, los);
+        GeodeticPoint result   = algorithm.refineIntersection(earth, position, los,
+                                                              algorithm.intersection(earth, position, los));
         checkIntersection(position, los, result);
         Assert.assertEquals(0.0, groundP.distance(earth.transform(result)), 2.0e-9);
 
diff --git a/src/test/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithmTest.java b/src/test/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithmTest.java
index c7946d17..30ad08c2 100644
--- a/src/test/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithmTest.java
+++ b/src/test/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithmTest.java
@@ -38,7 +38,8 @@ public class DuvenhageAlgorithmTest extends AbstractAlgorithmTest {
         final IntersectionAlgorithm algorithm = createAlgorithm(updater, 8);
         Vector3D position = new Vector3D(-3787079.6453602533, 5856784.405679551, 1655869.0582939098);
         Vector3D los = new Vector3D( 0.5127552821932051, -0.8254313129088879, -0.2361041470463311);
-        GeodeticPoint intersection = algorithm.intersection(earth, position, los);
+        GeodeticPoint intersection = algorithm.refineIntersection(earth, position, los,
+                                                                  algorithm.intersection(earth, position, los));
         checkIntersection(position, los, intersection);
     }
 
@@ -48,7 +49,8 @@ public class DuvenhageAlgorithmTest extends AbstractAlgorithmTest {
         final IntersectionAlgorithm algorithm = createAlgorithm(updater, 8);
         Vector3D position = new Vector3D(-3787079.6453602533, 5856784.405679551, 1655869.0582939098);
         Vector3D los = new Vector3D( 0.42804005978915904, -0.8670291034054828, -0.2550338037664377);
-        GeodeticPoint intersection = algorithm.intersection(earth, position, los);
+        GeodeticPoint intersection = algorithm.refineIntersection(earth, position, los,
+                                                                  algorithm.intersection(earth, position, los));
         checkIntersection(position, los, intersection);
     }
 
-- 
GitLab