this.financialInstRepresentation = new XmlsonObject("financial-institution");
this.financialInstPresenter = mock(FinancialInstPresenter.class);
when(financialInstPresenter.present(Mockito.any(FinancialInst.class))).thenReturn(financialInstRepresentation);
this.presenter = new AccountPresenter(new MoneyPresenter(), financialInstPresenter);
}