package ex05; import static org.junit.Assert.*; import static org.hamcrest.CoreMatchers.*; import org.junit.Test; import common.Money; public class ReportTest { @Test public void testReportTotalIncome() { Report report = new ReportStub(new BankStub()); Money total = report.getTotalIncomeBetween(null, null); assertThat(total, is(new Money(2, "EUR"))); } }