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

Examples of org.xrace.view.admin.evenements.course.inscriptions.reports.InscriptionsCompleteReport


        "Cross-Country");
  }

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


    Assert.assertEquals(6, wb.getSheetAt(0).getLastRowNum());
  }

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

  public PreparationPreCoursePage(final Course course)
  {
    super();

    add(new ResourceLink("complete", new ExcelResource(
        new InscriptionsCompleteReport(course,
            dossierInscriptionService))));
    add(new ResourceLink("summary", new ExcelResource(
        new InscriptionsSommaireReport(course,
            dossierInscriptionService))));
    add(new ResourceLink("equipes",
View Full Code Here

TOP

Related Classes of org.xrace.view.admin.evenements.course.inscriptions.reports.InscriptionsCompleteReport

Copyright © 2018 www.massapicom. 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.