class Clueful[T] extends AnyRef
Class that provides a withClue
method that appends clue strings to any
ModifiableMessage
exception
thrown by the passed by-name parameter.
- Source
- AppendedClues.scala
- Alphabetic
- By Inheritance
- Clueful
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new Clueful(fun: => T)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withClue(clue: Any): T
Executes the block of code passed as the constructor parameter to this
Clueful
, and, if it completes abruptly with aModifiableMessage
exception, appends the "clue" string passed to this method to the end of the detail message of that thrown exception, then rethrows it.Executes the block of code passed as the constructor parameter to this
Clueful
, and, if it completes abruptly with aModifiableMessage
exception, appends the "clue" string passed to this method to the end of the detail message of that thrown exception, then rethrows it. If clue does not begin in a white space character or one of the punctuation characters: comma (,
), period (.
), or semicolon (;
), one space will be added between it and the existing detail message (unless the detail message is not defined).This method allows you to add more information about what went wrong that will be reported when a test fails or cancels. For example, this code:
{ 1 + 1 should equal (3) } withClue ", not even for very large values of 1"
Would yield a
TestFailed
exception whose message would be:2 did not equal 3, not even for very large values of 1
- Exceptions thrown
NullArgumentException
if the passedclue
isnull