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);
}