@Test
public void testWrap() {
TestUtil.testPrivateConstructor(SolverValidator.class);
final ImmutableSet<ParcelDTO> empty = ImmutableSet.of();
final VehicleStateObject vs1 = new VehicleStateObject(vdto(), new Point(0,
0), empty, 0, null, null);
final VehicleStateObject vs2 = new VehicleStateObject(vdto(), new Point(0,
0), ImmutableSet.of(p3), 0, null, null);
final VehicleStateObject vs3 = new VehicleStateObject(vdto(), new Point(0,
0), empty, 0, p4, null);
final ImmutableList<ImmutableList<ParcelDTO>> routes = ImmutableList.of(
ImmutableList.of(p1, p1), ImmutableList.of(p2, p3, p2),
ImmutableList.of(p4, p5, p5, p4));