Packages

o

org.scalatest

Pending

object Pending extends Outcome with Product with Serializable

Outcome for a test that was pending, which contains an optional string giving more information on what exactly is needed for the test to become non-pending.

Source
Outcome.scala
Linear Supertypes
Outcome, Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Pending
  2. Outcome
  3. Serializable
  4. Serializable
  5. Product
  6. Equals
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. val isCanceled: Boolean

    Indicates whether this Outcome represents a test that was canceled.

    Indicates whether this Outcome represents a test that was canceled.

    This class's implementation of this method always returns false.

    returns

    true if this Outcome is an instance of Canceled.

    Definition Classes
    Outcome
  2. val isExceptional: Boolean

    Indicates whether this Outcome represents a test that either failed or was canceled, in which case this Outcome will contain an exception.

    Indicates whether this Outcome represents a test that either failed or was canceled, in which case this Outcome will contain an exception.

    returns

    true if this Outcome is an instance of either Failed or Canceled.

    Definition Classes
    Outcome
  3. val isFailed: Boolean

    Indicates whether this Outcome represents a test that failed.

    Indicates whether this Outcome represents a test that failed.

    This class's implementation of this method always returns false.

    returns

    true if this Outcome is an instance of Failed.

    Definition Classes
    Outcome
  4. val isPending: Boolean

    Indicates that this Outcome represents a test that was pending.

    Indicates that this Outcome represents a test that was pending.

    This class's implementation of this method always returns true.

    returns

    true

    Definition Classes
    PendingOutcome
  5. val isSucceeded: Boolean

    Indicates whether this Outcome represents a test that succeeded.

    Indicates whether this Outcome represents a test that succeeded.

    This class's implementation of this method always returns false.

    returns

    true if this Outcome is an instance of Succeeded.

    Definition Classes
    Outcome
  6. def toOption: Option[Throwable]

    Converts this Outcome to an Option[Throwable].

    Converts this Outcome to an Option[Throwable].

    This class's implementation of this method always returns None.

    returns

    a Some wrapping the contained exception if this Outcome is an instance of either Failed or Canceled.

    Definition Classes
    Outcome
  7. def toSucceeded: Succeeded.type

    Converts this Outcome to a Succeeded.

    Converts this Outcome to a Succeeded.

    The implmentation of this class will throw TestPendingException with the passed in message.

    returns

    Succeeded if this Outcome instance is a Succeeded.

    Definition Classes
    PendingOutcome