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

weaver.framework.SuiteEvent.scala Maven / Gradle / Ivy

There is a newer version: 0.8.4
Show newest version
package weaver
package framework

import cats.data.Chain

// format: off

sealed trait RunEvent                               extends Product with Serializable
sealed trait SuiteEvent                             extends Product with Serializable
final case class SuiteStarted(name: SuiteName)      extends SuiteEvent with RunEvent
final case class TestFinished(outcome: TestOutcome) extends SuiteEvent with RunEvent
final case class SuiteFinished(name: SuiteName)     extends SuiteEvent with RunEvent
final case class RunFinished(failed: Chain[(SuiteName, TestOutcome)]) extends RunEvent




© 2015 - 2024 Weber Informatics LLC | Privacy Policy