minBound

abstract fun minBound(minValue: Int)(source)
abstract fun minBound(minValue: Provider<Int>)(source)

A shortcut for

bound {
minValue = min
}

See also


abstract fun minBound(minValue: Int, coverageUnits: CoverageUnit = CoverageUnit.LINE, aggregationForGroup: AggregationType = AggregationType.COVERED_PERCENTAGE)(source)

A shortcut for

bound {
minValue = minValue
coverageUnits = coverageUnits
aggregationForGroup = aggregationForGroup
}

See also