All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lazerycode.jmeter.analyzer.CheckResult Maven / Gradle / Ivy

Go to download

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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy