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

us.abstracta.jmeter.javadsl.codegeneration.params.IntParam 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 with an integer value.
 *
 * @since 0.45
 */
public class IntParam extends FixedParam {

  public IntParam(String expression, Integer defaultValue) {
    super(int.class, expression, Integer::valueOf, defaultValue);
  }

  public IntParam(int value) {
    super(int.class, value, null);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy