Package org.springframework.samples.flight

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

Related Classes of org.springframework.samples.flight.FlightDocument

Copyright © 2018 www.massapicom. 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.