Boolean Standards
Boolean Standard Value Generators enables you to use predefined value generators for boolean values.
You can use any of the predefined standards from one of these groups:
-
boolean
- generates a random boolean, while the probability for beingtrue
is0.5
(in about a half examples, the value will betrue
, in another half it will befalse
) -
true
andfalse
- will generate a static constant boolean value -
boolean-<<probability>>
- lets you generate a boolean value with specification of how probable the value should betrue
. Predefined probabilities are [0.1
,0.2
,0.25
,0.3
,0.4
,0.5
,0.6
,0.7
,0.75
,0.8
and0.9
]. The result name could be for exampleboolean-0.75
(about one quarter of the values will befalse
, rest will betrue
)