Package webshop.orders.api

Examples of webshop.orders.api.OrderProduct


    public void testSaveOrder() throws Exception {
      Order order = new Order();
      Customer customer = new Customer();
      customer.setEmail("someuser@somedomain.com");
      order.setCustomer(customer);
      order.getProducts().add(new OrderProduct());
     
      instance.placeOrder(order);
     
      assertNotNull(order.get_id());
      assertEquals(1, order.getEventLog().size());
View Full Code Here

TOP

Related Classes of webshop.orders.api.OrderProduct

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.