sealed abstract class Result extends AnyRef

The result of an execution, either:

  • a success: the execution is ok
  • a failure: an expectation is not met
  • an error: an exception occurred
  • a pending execution: the user has decided that execution must not be performed
  • a skipped execution: based on dynamic conditions (a database not available for instance) the execution is not performed

A Result has:

  • a message describing the outcome
  • a message describing the expectation
  • possibly a number of expectations when it is the outcome of several checks (this is used for the reporting of ScalaCheck properties).
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Result
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. abstract type SelfType <: Result

Abstract Value Members

  1. abstract def mute: Result

    returns

    the result with no message

  2. abstract def setExpectationsNb(n: Int): SelfType

    set the number of expectations

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addExpectationsNb(n: Int): SelfType

    increment the number of expectations

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. def coloredStatus(implicit args: Arguments = Arguments()): String

    returns

    the colored textual status of the result

  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. val expectationsNb: Int
  11. val expected: String
  12. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def isError: Boolean

    returns

    true if the result is an Error instance

  16. def isFailure: Boolean

    returns

    true if the result is a Failure instance

  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def isIssue: Boolean

    returns

    true if the result is a failure or an Error

  19. def isPending: Boolean

    returns

    true if the result is a Pending instance

  20. def isSkipped: Boolean

    returns

    true if the result is a Skipped instance

  21. def isSuccess: Boolean

    returns

    true if the result is a Success instance

  22. def isSuspended: Boolean

    returns

    true if the result is a Skipped or Pending

  23. def isThrownFailure: Boolean

    returns

    true if the result is a Failure that was thrown like a JUnit assertion error or a NotImplemented exception

  24. def mapExpected(f: (String) ⇒ String): Result

    change this result's expected

  25. def mapMessage(f: (String) ⇒ String): Result

    change this result's message

  26. val message: String
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. def prependMessage(pre: String): Result

    prepend another message and a conjunction depending on the status of this result

  31. def status: String

    returns

    the uncolored textual status of the result

  32. def statusName(implicit args: Arguments = Arguments()): String

    returns

    the textual status of the result

  33. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. def updateExpected(exp: String): Result

    update the expected of a result, keeping the subclass type

  36. def updateMessage(msg: String): Result

    update the message of a result, keeping the subclass type

  37. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped