@Test
public void testRemoveVehicle() throws IOException {
getFirstVehicle();
RemoveVehicleQuery rvq = conn.queryRemoveVehicle();
rvq.setVehicleData(firstVehicle, 1);
rvq.run();
conn.nextSimStep();
assertNull(conn.getVehicleRepository().getByID(firstVehicle.getID()));
}
// TODO add induction loop tests