com.lazerycode.jmeter.analyzer.CheckResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-analysis-maven-plugin Show documentation
Show all versions of jmeter-analysis-maven-plugin Show documentation
Parses JMeter result files and computes performance indicators such as average request duration
The newest version!
/**
*
*/
package com.lazerycode.jmeter.analyzer;
/**
*
*/
public class CheckResult {
// Default check is disabling
private Check throughput = new Check();
// Default check is disabling
private Check errors = new Check();
public Check getThroughput() {
return throughput;
}
public void setThroughput(Check pThroughput) {
throughput = pThroughput;
}
public Check getErrors() {
return errors;
}
public void setErrors(Check pErrors) {
errors = pErrors;
}
}