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

com.lazerycode.jmeter.analyzer.ConfigurationCharts 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;


/**
 * Configuration of chart generation
 */
public class ConfigurationCharts {

    private int width = 950;

    private int height = 500;

    public int getWidth() {
        return width;
    }

    public void setWidth(int pWidth) {
        width = pWidth;
    }

    public int getHeight() {
        return height;
    }

    public void setHeight(int pHeight) {
        height = pHeight;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy