All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.kotest.inspectors.runTests.kt Maven / Gradle / Ivy

package io.kotest.inspectors

fun  runTests(col: Collection, f: (T) -> Unit): List> {
  return col.map {
    try {
      f(it)
      ElementPass(it)
    } catch (e: Throwable) {
      ElementFail(it, e)
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy