alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

JMeter example source code file (BeanShellTest.bsh)

This example JMeter source code file (BeanShellTest.bsh) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - JMeter tags/keywords

jmeter, jmeter

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

 

new blog posts

 

Copyright 1998-2021 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.