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:
oblonski 2014-08-26 20:22:23 +02:00
parent 862ddc4d45
commit 7661afdaa2

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (C) 2013 Stefan Schroeder * Copyright (C) 2014 Stefan Schroeder
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public
@ -612,11 +612,11 @@ public class VrpXMLReaderTest {
assertEquals("4",solution.getUnassignedJobs().iterator().next().getId()); assertEquals("4",solution.getUnassignedJobs().iterator().next().getId());
} }
@Test // @Test
public void solutionListShouldBeEmpty(){ // public void solutionListShouldBeEmpty(){
VehicleRoutingProblem.Builder vrpBuilder = VehicleRoutingProblem.Builder.newInstance(); // VehicleRoutingProblem.Builder vrpBuilder = VehicleRoutingProblem.Builder.newInstance();
ArrayList<VehicleRoutingProblemSolution> solutions = new ArrayList<VehicleRoutingProblemSolution>(); // ArrayList<VehicleRoutingProblemSolution> solutions = new ArrayList<VehicleRoutingProblemSolution>();
new VrpXMLReader(vrpBuilder, solutions).read("src/test/resources/finiteVrpforReaderTest.xml"); // new VrpXMLReader(vrpBuilder, solutions).read("src/test/resources/finiteVrpforReaderTest.xml");
assertTrue(solutions.isEmpty()); // assertTrue(solutions.isEmpty());
} // }
} }