| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ViewGenerator |
|
| 1.0;1 |
| 1 | package org.jbehave.core.reporters; | |
| 2 | ||
| 3 | import java.io.File; | |
| 4 | import java.util.List; | |
| 5 | import java.util.Properties; | |
| 6 | ||
| 7 | import org.jbehave.core.model.StoryMaps; | |
| 8 | ||
| 9 | /** | |
| 10 | * A view generator is responsible for creating a collective views of stories, | |
| 11 | * either story maps or file-based reports of stories run. | |
| 12 | */ | |
| 13 | public interface ViewGenerator { | |
| 14 | ||
| 15 | void generateMapsView(File outputDirectory, StoryMaps storyMaps, | |
| 16 | Properties viewResources); | |
| 17 | ||
| 18 | void generateReportsView(File outputDirectory, List<String> formats, | |
| 19 | Properties viewResources); | |
| 20 | ||
| 21 | ReportsCount getReportsCount(); | |
| 22 | ||
| 23 | ||
| 24 | } |