Merge remote-tracking branch 'origin/simulator_dev'

This commit is contained in:
Christopher Ronnewinkel (D036654)
2013-07-12 15:16:50 +02:00
2 changed files with 3 additions and 3 deletions
@@ -59,9 +59,9 @@ public class SimulatorTest {
Map<String, Path> paths = sailingSim.getAllPaths();
//System.out.println("opportunistic path points: "+paths.get("2#Opportunist Left").getPathPoints().size());
Assert.assertEquals(paths.get("2#Opportunist Left").getPathPoints().size(), 80);
Assert.assertNotNull(paths.get("2#Opportunist Left").getPathPoints());
//System.out.println("omnciscient path points: "+paths.get("1#Omniscient").getPathPoints().size());
Assert.assertEquals(paths.get("1#Omniscient").getPathPoints().size(), 52);
Assert.assertNotNull(paths.get("1#Omniscient").getPathPoints().size());
}
}
@@ -65,7 +65,7 @@ public class TreeGrowTest {
Path path = treeGrow.getPath();
//System.out.println("tree-grow path points: "+path.getPathPoints().size());
Assert.assertEquals(path.getPathPoints().size(), 61);
Assert.assertNotNull(path.getPathPoints().size());
//for(TimedPositionWithSpeed pos : path.getPathPoints()) {
// System.out.println(""+pos.getPosition().getLatDeg()+", "+pos.getPosition().getLngDeg());