com.jmeterplugins.config.PropertyReaderBeanInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-property-file-reader Show documentation
Show all versions of jmeter-property-file-reader Show documentation
This client is used to read properties from file and load them to jmeter
The newest version!
package com.jmeterplugins.config;
import org.apache.jmeter.testbeans.BeanInfoSupport;
import java.beans.PropertyDescriptor;
public class PropertyReaderBeanInfo extends BeanInfoSupport {
private static final String FILENAME = "filename";
public PropertyReaderBeanInfo() {
super(PropertyReader.class);
// this.createPropertyGroup("csv_data", new String[]{"filename", "fileEncoding", "variableNames", "delimiter", "quotedData", "recycle", "stopThread", "shareMode"});
PropertyDescriptor p = this.property(FILENAME);
p.setValue("notUndefined", Boolean.TRUE);
p.setValue("default", "");
p.setValue("notExpression", Boolean.TRUE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy