Total
class Total(val runner: Runner, val stage: PipelineStage, val stageNameUser: String, val report: XUnitReport?, maxScore: Double?) : XUnitScoreUnitGenerator
XUnitScoreUnitGenerator for total-based score accumulation policy.
Parameters
maxScore
The maximum score to scale to, or null
if scoring is disabled.
Constructors
Link copied to clipboard
constructor(runner: Runner, stage: PipelineStage, stageNameUser: String, report: XUnitReport?, maxScore: Double?)
Properties
Link copied to clipboard
XUnitReport generated by the pipeline stage.
Link copied to clipboard
List of ScoreReportUnit generated.
Link copied to clipboard
The PipelineStage which should generate the ScoreReportUnit.
Link copied to clipboard
The name of the pipeline stage as shown to users.
Functions
Link copied to clipboard
protected fun XUnitReport.generateScoreUnits(generator: (testsuite: IndexedValue<XUnitReport.TestSuite>, testcase: IndexedValue<XUnitReport.TestCase>) -> StageReportUnit.Scorable.Score): List<ScoreReportUnit>
Generates a list of ScoreReportUnit from this
report.