doc / ch.tutteli.atrium.logic.creating.basic.contains.checkers / validateButAtMost

validateButAtMost

fun validateButAtMost(atLeastTimes: Int, butAtMostTimes: Int, atLeastButAtMostCall: (Int, Int) -> String, atLeastCall: (Int) -> String, butAtMostCall: (Int) -> String, exactlyCall: (Int) -> String): Unit (source)

Validates that atLeastTimes is not equal to or greater than butAtMostTimes; throws an IllegalArgumentException otherwise, pointing the user to use the given exactlyCall in case atLeastTimes equals butAtMostTimes.

Exceptions

IllegalArgumentException - in case atLeastTimes is equal or greater than butAtMostTimes