us.abstracta.jmeter.javadsl.codegeneration.params.NameParam 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.params;
/**
* Is a parameter associated to a test element name.
*
* This type of parameter has the special consideration that when names are set to default values,
* then they can be ignored.
*
* @since 0.45
*/
public class NameParam extends StringParam {
public NameParam(String name, String defaultName) {
super(name, defaultName);
}
@Override
public boolean isIgnored() {
return isDefault();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy