org.scalatest

FailureOf

trait FailureOf extends AnyRef

Trait FailureOf has been deprecated and will be removed in a future version of ScalaTest. Instead of the failureOf method provided by this trait, please use the outcomeOf method provided by trait OutcomeOf instead.

The outcomeOf method is not just the failureOf method with the name changed, so you will likely need to do a bit of rewriting of your usage of failureOf. The difference is that failureOf returned an optional Throwable, whereas outcomeOf returns an Outcome.

Annotations
@deprecated
Deprecated

The FailureOf trait has been deprecated. Please use trait OutcomeOf instead.

Source
FailureOf.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FailureOf
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Deprecated Value Members

  1. def failureOf(f: ⇒ Unit): Option[Throwable]

    Annotations
    @deprecated
    Deprecated

    The failureOf method of trait FailureOf has been deprecated. Please use the outcomeOf method of trait OutcomeOf instead.