Package com.wesabe.api.accounts.resources

Examples of com.wesabe.api.accounts.resources.AccountResource


    public void setup() {
      accountDAO = mock(AccountDAO.class);
      accountPresenter = mock(AccountPresenter.class);
      investmentAccountPresenter = mock(InvestmentAccountPresenter.class);
     
      accountResource = new AccountResource(accountDAO, accountPresenter, investmentAccountPresenter);
      user = mock(WesabeUser.class);
     
      account = mock(Account.class);
      investmentAccount = mock(InvestmentAccount.class);
     
View Full Code Here

TOP

Related Classes of com.wesabe.api.accounts.resources.AccountResource

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.