Description: |
Returns a random integer between 0 and nMax. Each virtual user gets a different seed value to generate the same unique sequences for each run. |
Parameters:
|
nMax-The maximum integer to be returned by the function. |
Syntax: |
$BFRand(nMax) |
Example: |
$BFRand(100) ; returns "45" |
Description:
|
Returns a random integer ranging between nMin and nMax inclusive. Each virtual user gets a different seed value to generate sequences. |
Parameters: |
nMin-The minimum integer in a range. nMax-The maximum integer in a range. |
Syntax: |
$BFRandRange(nMin,nMax) |
Example: |
$BFRandRange(200, 210) ; returns "202" |
Description: |
Returns a unique (non-repeating) random integer ranging between 1 and nMax. Each virtual user gets a different seed value to generate unique sequences for each run. |
Parameters: |
nMax-The maximum integer to be returned. |
Syntax: |
$BFURand(nMax) |
Example:
|
$BFURand(100) ; returns 78 the first time this function executes, and 50, and 19 for subsequent executions of this function. |
Description: |
Returns unique integers ranging between the value of nMin and the value of nMax inclusive. Each virtual user gets a different seed value to generate unique sequences for each run. |
Parameters: |
nMin-The minimum range integer to return. nMax-The maximum range integer to return. |
Syntax: |
$BFURandRange(nMin,nMax) |
Example: |
$BFURandRange(1,100) ; returns 100 the first time this function executes and 95, and 85 for subsequent executions of this function. |
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center