Package com.mcorrigal.matchingEngine.order.orderProperties

Examples of com.mcorrigal.matchingEngine.order.orderProperties.OrderId


    OrderBookSide side = orderBookSideFrom(orderBookSide);
    OrderList ordersInOrderBookSide = publishedOrderBookSideFor(side);
    assertThat(specifiedOrderIds.size(), is(ordersInOrderBookSide.size()));
   
    for (int i = 0; i < specifiedOrderIds.size(); i++) {
      OrderId expectedOrderId = OrderId.create(specifiedOrderIds.get(i).getId());
      assertThat(ordersInOrderBookSide.get(i).hasId(expectedOrderId), is(true));
    }
  }
View Full Code Here

TOP

Related Classes of com.mcorrigal.matchingEngine.order.orderProperties.OrderId

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.