assertAll

fun <T> assertAll(collection: Iterable<T>, message: String? = null, predicate: (T) -> Boolean)
fun <T> assertAll(collection: Iterable<T>, assertion: (T) -> Unit)

Convenience function for asserting on all elements of a collection.