|
JMeter example source code file (BeanShellTest.bsh)
The JMeter BeanShellTest.bsh source code
// BeanShell Test initialisation file
// Used in unit tests
i=j=0;
import org.apache.jmeter.util.JMeterUtils;
getprop(p){// get a JMeter property
return JMeterUtils.getPropDefault(p,"");
}
getprop(p,d){// get a JMeter property with default
return JMeterUtils.getPropDefault(p,d);
}
setprop(p,v){// set a JMeter property
JMeterUtils.getJMeterProperties().setProperty(p, v);
}
return 9876; // used by source test
Other JMeter examples (source code examples)Here is a short list of links related to this JMeter BeanShellTest.bsh source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.