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

munit.TestValues.scala Maven / Gradle / Ivy

There is a newer version: 1.0.0-M10
Show newest version
package munit

import scala.util.control.NoStackTrace

/**
 * Values that have special treatment when evaluating values produced by tests.
 */
object TestValues {

  /** The test failed with the given exception but was ignored but its marked as flaky */
  class FlakyFailure(error: Throwable)
      extends FailException(
        "ignoring flaky test failure",
        error,
        Location.empty
      )
      with NoStackTrace
      with Serializable

  /** The test case was ignored. */
  val Ignore = munit.Ignore
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy