Package com.mcorrigal.matchingEngine.order.orderProperties

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


  private Price highPrice = Price.create("20");
  private Price lowPrice = Price.create("10");

  @Test
  public void newPriceFromStringRepresentation() {
    Price priceFromString = Price.create("100.89");
    Price priceFromDecimal = new Price(new BigDecimal("100.89"));
    assertThat(priceFromString.equals(priceFromDecimal), is(true));
  }
View Full Code Here

TOP

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

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.