private Node food, entertainment, groceries, restaurants;
private TagHierarchy hierarchy;
@Before
public void setup() throws Exception {
this.moneyPresenter = new MoneyPresenter();
this.sumOfMoneyPresenter = new SumOfMoneyPresenter(moneyPresenter);
this.presenter = new TagHierarchyPresenter(sumOfMoneyPresenter);
this.restaurants = new Node(tag("restaurants"), new SumOfMoney(money("20.00", USD), 1), ImmutableList.<Node>of());
this.groceries = new Node(tag("groceries"), new SumOfMoney(money("30.00", USD), 1), ImmutableList.<Node>of());