Examples of JustcoinBalance


Examples of com.xeiam.xchange.justcoin.dto.account.JustcoinBalance

  public void before() {

    // initialize expected values
    currency = Currencies.LTC;
    balance = BigDecimal.valueOf(0.00055586);
    justcoinBalance = new JustcoinBalance(currency, balance, BigDecimal.ZERO, BigDecimal.valueOf(0.00055586));
  }
View Full Code Here

Examples of com.xeiam.xchange.justcoin.dto.account.JustcoinBalance

    // Use Jackson to parse it
    final ObjectMapper mapper = new ObjectMapper();
    final JustcoinBalance[] justcoinBalances = mapper.readValue(is, new JustcoinBalance[0].getClass());

    // Verify that the example data was unmarshalled correctly
    final JustcoinBalance ltcBalance = justcoinBalances[3];
    assertThat(ltcBalance).isEqualTo(justcoinBalance);
    assertThat(ltcBalance.getHold().scale()).isEqualTo(8);
  }
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.