Examples of FlightDocument


Examples of org.springframework.samples.flight.FlightDocument

    FlightType flight = null;
    if (o instanceof FlightType) {
      flight = (FlightType) o;
    }
    else if (o instanceof FlightDocument) {
      FlightDocument flightDocument = (FlightDocument) o;
      flight = flightDocument.getFlight();
    }
    assertNotNull("Flight is null", flight);
    assertEquals("Number is invalid", 42L, flight.getNumber());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.