stateManager.informInsertionStarts(Arrays.asList(shipment_route), Collections.<Job>emptyList());
Shipment s = mock(Shipment.class);
Capacity newSize = Capacity.Builder.newInstance().addDimension(0, 10).build();
when(s.getSize()).thenReturn(newSize);
JobInsertionContext context = new JobInsertionContext(shipment_route,s,shipment_route.getVehicle(),null,0.);
DeliverShipment newAct = new DeliverShipment(s);
PickupAndDeliverShipmentLoadActivityLevelConstraint loadConstraint = new PickupAndDeliverShipmentLoadActivityLevelConstraint(stateManager);
HardActivityConstraint.ConstraintsStatus status = loadConstraint.fulfilled(context,shipment_route.getActivities().get(0),newAct,shipment_route.getActivities().get(1),0.);