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

us.abstracta.jmeter.javadsl.codegeneration.CodeSegment Maven / Gradle / Ivy

Go to download

Simple API to run JMeter performance tests in an VCS and programmers friendly way.

There is a newer version: 028
Show newest version
package us.abstracta.jmeter.javadsl.codegeneration;

import java.util.Collection;
import java.util.Map;

/**
 * Specifies part of code to be generated including common logic required byt different type of code
 * segments.
 *
 * @since 1.5
 */
public interface CodeSegment {

  String buildCode(String indent);

  Collection getStaticImports();

  Collection getImports();

  Map getMethodDefinitions();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy