Package com.yummynoodlebar.core.domain.fixtures

Source Code of com.yummynoodlebar.core.domain.fixtures.OrdersFixtures

package com.yummynoodlebar.core.domain.fixtures;

import com.yummynoodlebar.core.domain.Order;
import com.yummynoodlebar.core.events.orders.OrderDetails;

import java.util.Collections;
import java.util.Date;

public class OrdersFixtures {

  public static final String YUMMY_ITEM = "yummy_core";

  public static Order standardOrder() {
    Order order = new Order(new Date());

    order.setOrderItems(Collections.singletonMap(YUMMY_ITEM, 12));

    return order;
  }

  /*
   * Twin of the above, to improve readability
   */
  public static OrderDetails standardOrderDetails() {
    return standardOrder().toOrderDetails();
  }

}
TOP

Related Classes of com.yummynoodlebar.core.domain.fixtures.OrdersFixtures

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.