Class TrendGraph.ResultData
- java.lang.Object
-
- com.piketec.jenkins.plugins.tpt.publisher.TrendGraph.ResultData
-
- Enclosing class:
- TrendGraph
public static class TrendGraph.ResultData extends Object
Data container to collect numbers of test results of TPT test execuiton for build previous builds.- Author:
- FInfantino, PikeTec GmbH
-
-
Field Summary
Fields Modifier and Type Field Description int
buildNummer
The number of the Jenkins buildint
error
The number of TPT test cases with execution errorint
failed
The number of failed TPT test casesint
inconclusive
The number of inconclusive TPT test casesint
passed
The number of passed TPT test casesint
total
The total number of TPT test cases
-
Constructor Summary
Constructors Constructor Description ResultData()
-
-
-
Field Detail
-
total
public int total
The total number of TPT test cases
-
error
public int error
The number of TPT test cases with execution error
-
failed
public int failed
The number of failed TPT test cases
-
passed
public int passed
The number of passed TPT test cases
-
inconclusive
public int inconclusive
The number of inconclusive TPT test cases
-
buildNummer
public int buildNummer
The number of the Jenkins build
-
-