us.abstracta.jmeter.javadsl.codegeneration.CodeSegment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-java-dsl Show documentation
Show all versions of jmeter-java-dsl Show documentation
Simple API to run JMeter performance tests in an VCS and programmers friendly way.
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