@Ignore
@Test
public void compileLoanSummary() throws IOException {
final LocalDate july2nd = new LocalDate(2012, 7, 2);
final MonetaryCurrency usDollars = new MonetaryCurrencyBuilder().withCode("USD").withDigitsAfterDecimal(2).build();
final List<LoanRepaymentScheduleInstallment> installments = LoanScheduleTestDataHelper.createSimpleLoanSchedule(july2nd, usDollars);
final File file = new File(TEST_FILE);
final DataInputStream dis = new DataInputStream(new FileInputStream(file));
final byte[] bytes = new byte[(int) file.length()];