tech.grasshopper.pdf.chapter.summary.SummaryChapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cucumber-pdf-report Show documentation
Show all versions of cucumber-pdf-report Show documentation
Generates Cucumber execution report in PDF format
package tech.grasshopper.pdf.chapter.summary;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.SuperBuilder;
import tech.grasshopper.pdf.chapter.Chapter;
@Data
@SuperBuilder
@EqualsAndHashCode(callSuper = false)
public class SummaryChapter extends Chapter {
public void createChapter() {
SummaryPage.builder().displayData(displayData).reportConfig(reportConfig).document(document)
.destinations(destinations).build().createPage();
}
}