|
在文档中介绍如何使用“unique number”的使用方法如下:
When you use a Unique Number parameter type, you specify a start number
and a block size. The block size indicates the size of the block of numbers
assigned to each Vuser. Each Vuser begins at the bottom of its range and
increments the parameter value for each iteration. For example, if you set
the Start number at 1 with a block of 500, the first Vuser uses the value 1
and the next Vuser uses the value 501, in their first iterations.
但是,我设置后却不是这样
脚本如下:
Action1()
{
"{key}";
lr_output_message("%s",lr_eval_string("{key}"));
return 0;
}
其中对key设置为start=1,block=500
但是在输出中仍是
1
2
是自动加1 ,并不是自动加500。
请问这是为什么呢?
请指教。谢谢 |
|