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

zio.test.results.TestResultPrinter.scala Maven / Gradle / Ivy

There is a newer version: 2.1.9
Show newest version
package zio.test.results

import zio.{ZIO, ZLayer}
import zio.test.ExecutionEvent

trait ResultPrinter {
  def print[E](event: ExecutionEvent.Test[E]): ZIO[Any, Nothing, Unit]
}

object ResultPrinter {
  val json: ZLayer[Any, Nothing, ResultPrinter] = ResultPrinterJson.live
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy