Examples of ShipOrderMapper


Examples of com.bla.bla.ShipOrderMapper

    @Test
    public void reader() throws XMLStreamException, FileNotFoundException {
        final XMLInputFactory inputFactory = XMLInputFactory.newInstance();
        final XMLStreamReader xmlr = inputFactory.createXMLStreamReader(new FileInputStream(new File(Root.testResourcesDirectory(), "ShipOrder.xml")));

        ShipOrderMapper shipOrderMapper = new ShipOrderMapper();
        final ShipOrder shipOrder = shipOrderMapper.readShipOrderDocument(xmlr);
        assertEquals("124453", shipOrder.getOrderId());
        assertEquals("1234567890123456", shipOrder.getOrderPerson());
        assertEquals("name", shipOrder.getShipTo().getName());
        assertEquals("address", shipOrder.getShipTo().getAddress());
        assertEquals("city", shipOrder.getShipTo().getCity());
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.