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

us.abstracta.jmeter.javadsl.codegeneration.params.NameParam 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.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