Class PerformanceTestResult
- java.lang.Object
-
- io.jenkins.plugins.devopsportal.utils.PerformanceTestResult
-
- All Implemented Interfaces:
Serializable
public class PerformanceTestResult extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PerformanceTestResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddErrorCount(float errors)voidaddSampleCount(int samples)longgetErrorCount()longgetSampleCount()longgetTestCount()voidsetErrorCount(long errorCount)voidsetSampleCount(long sampleCount)voidsetTestCount(long testCount)
-
-
-
Method Detail
-
getTestCount
public long getTestCount()
-
setTestCount
public void setTestCount(long testCount)
-
getSampleCount
public long getSampleCount()
-
setSampleCount
public void setSampleCount(long sampleCount)
-
getErrorCount
public long getErrorCount()
-
setErrorCount
public void setErrorCount(long errorCount)
-
addSampleCount
public void addSampleCount(int samples)
-
addErrorCount
public void addErrorCount(float errors)
-
-