use of org.apache.jmeter.config.Arguments in project ACS by ACS-Community.
the class T13Sampler method getDefaultParameters.
/**
* Provide a list of parameters which this test supports. Any
* parameter names and associated values returned by this method
* will appear in the GUI by default so the user doesn't have
* to remember the exact names. The user can add other parameters
* which are not listed here. If this method returns null then
* no parameters will be listed. If the value for some parameter
* is null then that parameter will be listed in the GUI with
* an empty value.
*
* @return a specification of the parameters used by this
* test which should be listed in the GUI, or null
* if no parameters should be listed.
*/
public Arguments getDefaultParameters() {
Arguments params = new Arguments();
params.addArgument("ThreadNum", "${__threadNum}");
params.addArgument(TEST_PREFIX, TEST);
params.addArgument("NoOfDevices", String.valueOf(DEV_COUNT));
return params;
}
use of org.apache.jmeter.config.Arguments in project ACS by ACS-Community.
the class T21Sampler method getDefaultParameters.
/**
* Provide a list of parameters which this test supports. Any
* parameter names and associated values returned by this method
* will appear in the GUI by default so the user doesn't have
* to remember the exact names. The user can add other parameters
* which are not listed here. If this method returns null then
* no parameters will be listed. If the value for some parameter
* is null then that parameter will be listed in the GUI with
* an empty value.
*
* @return a specification of the parameters used by this
* test which should be listed in the GUI, or null
* if no parameters should be listed.
*/
public Arguments getDefaultParameters() {
Arguments params = new Arguments();
params.addArgument("ThreadNum", "${__threadNum}");
params.addArgument(TEST_PREFIX, TEST);
params.addArgument("SizeOfSet", String.valueOf(SIZE_OF_SET));
return params;
}
use of org.apache.jmeter.config.Arguments in project ACS by ACS-Community.
the class T22Sampler method getDefaultParameters.
/**
* Provide a list of parameters which this test supports. Any
* parameter names and associated values returned by this method
* will appear in the GUI by default so the user doesn't have
* to remember the exact names. The user can add other parameters
* which are not listed here. If this method returns null then
* no parameters will be listed. If the value for some parameter
* is null then that parameter will be listed in the GUI with
* an empty value.
*
* @return a specification of the parameters used by this
* test which should be listed in the GUI, or null
* if no parameters should be listed.
*/
public Arguments getDefaultParameters() {
Arguments params = new Arguments();
params.addArgument("ThreadNum", "${__threadNum}");
params.addArgument(TEST_PREFIX, TEST);
params.addArgument("SizeOfSet", String.valueOf(SIZE_OF_SET));
params.addArgument("Delay", String.valueOf(DELAY));
return params;
}
use of org.apache.jmeter.config.Arguments in project ACS by ACS-Community.
the class T26Sampler method getDefaultParameters.
/**
* Provide a list of parameters which this test supports. Any
* parameter names and associated values returned by this method
* will appear in the GUI by default so the user doesn't have
* to remember the exact names. The user can add other parameters
* which are not listed here. If this method returns null then
* no parameters will be listed. If the value for some parameter
* is null then that parameter will be listed in the GUI with
* an empty value.
*
* @return a specification of the parameters used by this
* test which should be listed in the GUI, or null
* if no parameters should be listed.
*/
public Arguments getDefaultParameters() {
Arguments params = new Arguments();
params.addArgument("ThreadNum", "${__threadNum}");
params.addArgument("SizeOfSet", String.valueOf(SIZE_OF_SET));
return params;
}
use of org.apache.jmeter.config.Arguments in project ACS by ACS-Community.
the class JMeterSampler method getDefaultParameters.
/* (non-Javadoc)
* @see org.apache.jmeter.protocol.java.sampler.JavaSamplerClient#getDefaultParameters()
*/
public Arguments getDefaultParameters() {
Arguments args = new Arguments();
args.addArgument("RemoteConcurrentFactory", "//localhost/RemoteConcurrentFactory");
args.addArgument("CyclicBarrierName", "cyclicBarrier");
args.addArgument("Parties", "ENTER NUMBER OF PARTIES");
return args;
}
Aggregations