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

remove test

This commit is contained in:
Stefan Schroeder 2013-08-22 11:14:35 +02:00
parent fd684e6043
commit b4d174ccda

View file

@ -1,27 +0,0 @@
package algorithms;
import org.junit.Test;
import basics.VehicleRoutingAlgorithm;
import basics.VehicleRoutingProblem;
public class BuildFastCVRPTest {
@Test
public void buildFastCVRPAlgoTest(){
VehicleRoutingProblem vrp = null;
VehicleRoutingAlgorithm vra = createVRA(vrp);
}
public VehicleRoutingAlgorithm createVRA(VehicleRoutingProblem vrp){
VehicleFleetManager fleetManager = new InfiniteVehicles(vrp.getVehicles());
return null;
}
}