@Test
public void itDoesNotIncludeOtherTagsInTheTotalCount() throws Exception {
final TxactionList list = new TxactionListBuilder()
.setTags(ImmutableSet.of(food))
.setAccounts(new AccountList(checking, savings))
.setCurrency(USD)
.setCurrencyExchangeRateMap(exchangeRates)
.build(txactions);
assertEquals(2, list.getTotalCount());
}