Package com.wesabe.api.accounts.presenters

Examples of com.wesabe.api.accounts.presenters.AccountListPresenter


      this.accounts = mock(AccountList.class);
      when(accounts.iterator()).thenReturn(ImmutableList.of(account).iterator());
      when(accounts.getAccountGroups()).thenReturn(ImmutableList.of(group));
      when(accounts.getTotal(Mockito.any(Currency.class), Mockito.any(CurrencyExchangeRateMap.class))).thenReturn(money("3460.81", USD));
     
      this.presenter = new AccountListPresenter(exchangeRateMap, moneyPresenter, accountPresenter, investmentAccountPresenter, accountGroupPresenter);
    }
View Full Code Here

TOP

Related Classes of com.wesabe.api.accounts.presenters.AccountListPresenter

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.