mirror of
https://github.com/graphhopper/jsprit.git
synced 2020-01-24 07:45:05 +01:00
modeling shipment
This commit is contained in:
parent
a97a99497b
commit
6b8e4c8a79
3 changed files with 205 additions and 2 deletions
|
|
@ -27,7 +27,7 @@ import org.junit.Test;
|
|||
public class ServiceTest {
|
||||
|
||||
@Test
|
||||
public void whenTwoServicesHaveTheSameId_theyShouldBeEqual(){
|
||||
public void whenTwoServicesHaveTheSameId_theyReferencesShouldBeUnEqual(){
|
||||
Service one = Service.Builder.newInstance("service", 10).setLocationId("foo").build();
|
||||
Service two = Service.Builder.newInstance("service", 10).setLocationId("fo").build();
|
||||
|
||||
|
|
@ -35,7 +35,7 @@ public class ServiceTest {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void whenTwoServicesHaveTheSameId_theyShouldBeEqual2(){
|
||||
public void whenTwoServicesHaveTheSameId_theyShouldBeEqual(){
|
||||
Service one = Service.Builder.newInstance("service", 10).setLocationId("foo").build();
|
||||
Service two = Service.Builder.newInstance("service", 10).setLocationId("fo").build();
|
||||
|
||||
|
|
|
|||
5
jsprit-core/src/test/java/basics/ShipmentTest.java
Normal file
5
jsprit-core/src/test/java/basics/ShipmentTest.java
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
package basics;
|
||||
|
||||
public class ShipmentTest {
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue