Discrete Random Types

Discrete Random types generate random discrete values of the discrete types integer, boolean or string. They are used for generating random input values, specifying random repetition factors, and specifying the probability of running transaction components. The following discrete random types are available:
  • RndBin: Random type with Bernoulli distribution (binomial distribution) generating boolean values
  • RndUniN: Random type with uniform distribution generating integer values
  • RndUniI: Random type with uniform distribution with intervals generating integer values
  • RndExpN: Random type with exponential distribution generating integer values
  • RndStr: Random type with uniform distribution for alphanumeric values generating string values
  • RndInd: Random type with user-defined distribution generating integer or string values
  • RndPerN: Random type with uniform distribution generating unique integer values
  • RndFile: Random type using a file of values for the generation of random values in which the selection of the values is random
  • RndStream: Sequential type using a file of values for the generation of random values in which the selection of the values is sequential.