|
|
Build assertion error message.
fun <T> buildAssertionError(msg: String, results: List<ElementResult<T>>): Nothing |
|
|
fun <T> forAtLeast(k: Int, array: Array<T>, f: (T) -> Unit): Unit
fun <T> forAtLeast(k: Int, col: Collection<T>, f: (T) -> Unit): Unit |
|
|
fun <T> forAtMost(k: Int, col: Collection<T>, f: (T) -> Unit): Unit |
|
|
fun <T> forExactly(k: Int, array: Array<T>, f: (T) -> Unit): Unit
fun <T> forExactly(k: Int, col: Collection<T>, fn: (T) -> Unit): Unit |
|
|
fun <T> runTests(col: Collection<T>, f: (T) -> Unit): List<ElementResult<T>> |