0, Status.OK,
results, "");
Reservation r = new Reservation(RESERVATION_ID, this.flight_id, customer_id, seatnum);
assertNotNull(r);
NewReservationCallback callback = this.client.new NewReservationCallback(r);
callback.clientCallback(cresponse);
// Check to make sure that our seat is now reserved
assertFalse("Flight is incorrectly marked as full\n" + seats, client.isFlightFull(seats));
// FIXME assertTrue("Failed to mark seat as reserved?", seats.get(seatnum));
}