Class ScenarioSummaryPageCollection
- java.lang.Object
-
- com.trivago.cluecumber.engine.rendering.pages.pojos.pagecollections.PageCollection
-
- com.trivago.cluecumber.engine.rendering.pages.pojos.pagecollections.ScenarioSummaryPageCollection
-
- All Implemented Interfaces:
Cloneable
- Direct Known Subclasses:
AllStepsPageCollection,AllTagsPageCollection
public class ScenarioSummaryPageCollection extends PageCollection
Page collection for the display of scenario results on the tag and step summary pages.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddScenarioIndexByStatus(Status status, int scenarioIndex)Add a specific scenario index to an associated status.intgetTotalNumberOfFailed()Return the number of failed scenarios.intgetTotalNumberOfPassed()Return the number of passed scenarios.intgetTotalNumberOfScenarios()Return the number of scenarios.intgetTotalNumberOfSkipped()Return the number of skipped scenarios.-
Methods inherited from class com.trivago.cluecumber.engine.rendering.pages.pojos.pagecollections.PageCollection
clone, getCustomParameters, getDisplayMode, getNavigationLinks, getPageTitle, getReportDetails, hasCustomParameters, isExpandAttachments, isExpandBeforeAfterHooks, isExpandDocStrings, isExpandOutputs, isExpandPreviousScenarioRuns, isExpandStepHooks, isExpandSubSections, isGroupPreviousScenarioRuns, setCustomParameters, setDisplayMode, setExpandAttachments, setExpandBeforeAfterHooks, setExpandDocStrings, setExpandOutputs, setExpandPreviousScenarioRuns, setExpandStepHooks, setExpandSubSections, setGroupPreviousScenarioRuns, setNavigationLinks
-
-
-
-
Method Detail
-
getTotalNumberOfScenarios
public int getTotalNumberOfScenarios()
Return the number of scenarios.- Returns:
- The count.
-
getTotalNumberOfPassed
public int getTotalNumberOfPassed()
Return the number of passed scenarios.- Returns:
- The count.
-
getTotalNumberOfFailed
public int getTotalNumberOfFailed()
Return the number of failed scenarios.- Returns:
- The count.
-
getTotalNumberOfSkipped
public int getTotalNumberOfSkipped()
Return the number of skipped scenarios.- Returns:
- The count.
-
-