txactions = ImmutableList.of(starbucks, disabled, wholeFoods, deleted);
}
@Test
public void itFiltersDeletedAndDisabledTransactions() throws Exception {
assertEquals(Lists.newArrayList(starbucks, wholeFoods), new TxactionListBuilder()
.setCurrency(USD)
.setCurrencyExchangeRateMap(exchangeRates)
.setAccounts(new AccountList(checking))
.build(txactions)
.getTxactions());