Package org.xrace.view.admin.evenements.course.inscriptions.reports

Examples of org.xrace.view.admin.evenements.course.inscriptions.reports.InscriptionsSommaireReport.generate()


  public void testGenerate1() throws Exception
  {
    InscriptionsSommaireReport report = new InscriptionsSommaireReport(
        courseXc1, getDossierInscriptionService());
    HSSFWorkbook wb = report.generate();
    Assert.assertEquals(6, wb.getSheetAt(0).getLastRowNum());
  }

  public void testGenerate2() throws Exception
  {
View Full Code Here


  public void testGenerate2() throws Exception
  {
    InscriptionsSommaireReport report = new InscriptionsSommaireReport(
        courseXc5, getDossierInscriptionService());
    HSSFWorkbook wb = report.generate();
    Assert.assertEquals(2, wb.getSheetAt(0).getLastRowNum());
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.