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

minitest.api.Utils.scala Maven / Gradle / Ivy

The newest version!
package minitest.api

import scala.util.control.NonFatal

object Utils {
  def silent[T](cb: => T): Unit =
    try { cb; () } catch {
      case NonFatal(_) => ()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy