1
0
Fork 0
mirror of https://github.com/graphhopper/jsprit.git synced 2020-01-24 07:45:05 +01:00

adjusted reader-tests

This commit is contained in:
oblonski 2014-03-04 15:49:42 +01:00
parent 71f19d9fbe
commit 42eaa0ad76
4 changed files with 27 additions and 27 deletions

View file

@ -50,7 +50,7 @@ public class ChristophidesReaderTest {
new ChristofidesReader(builder).read(this.getClass().getClassLoader().getResource("vrpnc1.txt").getPath());
VehicleRoutingProblem vrp = builder.build();
for(Vehicle v : vrp.getVehicles()){
assertEquals(160,v.getCapacity());
assertEquals(160,v.getType().getCapacityDimensions().get(0));
}
}
@ -60,8 +60,8 @@ public class ChristophidesReaderTest {
new ChristofidesReader(builder).read(this.getClass().getClassLoader().getResource("vrpnc1.txt").getPath());
VehicleRoutingProblem vrp = builder.build();
for(Vehicle v : vrp.getVehicles()){
assertEquals(30.0,v.getCoord().getX(),0.01);
assertEquals(40.0,v.getCoord().getY(),0.01);
assertEquals(30.0,v.getStartLocationCoordinate().getX(),0.01);
assertEquals(40.0,v.getStartLocationCoordinate().getY(),0.01);
}
}
@ -81,7 +81,7 @@ public class ChristophidesReaderTest {
VehicleRoutingProblem.Builder builder = VehicleRoutingProblem.Builder.newInstance();
new ChristofidesReader(builder).read(this.getClass().getClassLoader().getResource("vrpnc1.txt").getPath());
VehicleRoutingProblem vrp = builder.build();
assertEquals(7,vrp.getJobs().get("1").getCapacityDemand());
assertEquals(7,vrp.getJobs().get("1").getSize().get(0));
}
@Test