intRange

fun ArbExtensionPoint.intRange(minInclusive: Int = Int.MIN_VALUE, maxInclusive: Int = Int.MAX_VALUE, minSize: Int = 0, maxSize: Int? = null): ArbArgsGenerator<IntRange>(source)

Returns an ArbArgsGenerator which generates IntRanges ranging from a lower bound minInclusive to an upper bound maxInclusive respecting the given minSize as well as maxSize if defined.

If minSize = 0 (which is the default), then it generates also empty ranges. Set minSize to 1 or greater if you do not want to include empty ranges.

Since

2.0.0