Package com.xeiam.xchange.justcoin.dto.account

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


    // 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

Related Classes of com.xeiam.xchange.justcoin.dto.account.JustcoinBalance

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.