int Bounds
fun ArbExtensionPoint.intBounds(minInclusive: Int = Int.MIN_VALUE, maxInclusive: Int = Int.MAX_VALUE, minSize: Int = 1, maxSize: Int? = null): ArbArgsGenerator<Tuple2<Int, Int>>(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
min Size
must be greater than or equal to 1
max Size
must be greater than or equal to minSize and less than the possible max size given by minInclusive, maxInclusive