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

modeling shipment

This commit is contained in:
oblonski 2013-10-16 09:24:23 +02:00
parent a97a99497b
commit 6b8e4c8a79
3 changed files with 205 additions and 2 deletions

View file

@ -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();

View file

@ -0,0 +1,5 @@
package basics;
public class ShipmentTest {
}