charBounds

fun ArbExtensionPoint.charBounds(minInclusive: Char = Char.MIN_VALUE, maxInclusive: Char = Char.MAX_VALUE, minSize: Int = 1, maxSize: Int? = null): ArbArgsGenerator<Tuple2<Char, Char>>(source)

Returns an ArbArgsGenerator which generates Tuple2 representing a lower and upper bound where the bounds range from minInclusive to maxInclusive respecting the given minSize as well as maxSize if defined.

Since

2.0.0

Parameters

minSize

must be greater than or equal to 1

maxSize

must be greater than or equal to minSize and less than the possible max size given by minInclusive, maxInclusive