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

com.lazerycode.jmeter.analyzer.writer.SummaryTextToFileWriter Maven / Gradle / Ivy

Go to download

Parses JMeter result files and computes performance indicators such as average request duration

There is a newer version: 1.0.6
Show newest version
package com.lazerycode.jmeter.analyzer.writer;

/**
 * Writes a summary for all discovered / configured
 * {@link com.lazerycode.jmeter.analyzer.AnalyzeMojo#requestGroups RequestGroups} to a TXT file.
 */
public class SummaryTextToFileWriter extends TextWriterBase {

  private static final String ROOT_TEMPLATE = "text/main.ftl";

  @Override
  public String getFileName() {
    return super.getFileName() + TXT_EXT;
  }

  @Override
  protected String getRootTemplate() {
    return ROOT_TEMPLATE;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy