Expectable

org.specs2.matcher.Expectable
See theExpectable companion object
case class Expectable[+T]

The Expectable class models anything which can be checked by applying a Matcher

It stores a value which is only evaluated when necessary and an optional additional description for that value.

The Expectable object is responsible for creating its own description, based on the value toString method and and an additional description.

Attributes

Companion
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Known subtypes
class ShouldExpectable[T]
Self type

Members list

Value members

Concrete methods

def applyMatcher[S >: T](m: => Matcher[S]): Result

apply a matcher on the value and return a Result

apply a matcher on the value and return a Result

Attributes

def describe(v: Any): String

Attributes

Returns

a description of any value with the custom description

def description: String

Attributes

Returns

a description of the value provided by the user a combination of the value show by specs2 and an optional description

evaluate the value and return the same expectable

evaluate the value and return the same expectable

Attributes

evaluate the value once and return an expectable with the same expression, ready to be evaluated again

evaluate the value once and return an expectable with the same expression, ready to be evaluated again

Attributes

def map[S](f: T => S): Expectable[S]

apply a function to the expectable value

apply a function to the expectable value

Attributes

def map[S](other: S): Expectable[S]

change the expectable value

change the expectable value

Attributes

def mapDescription(d: Option[String => String]): Expectable[T]

apply a function to the description function

apply a function to the description function

Attributes

def mapDescription(d: String => String): Expectable[T]
def mapDescription(d: String): Expectable[T]
def updateDescription(d: String => String): Expectable[T]

update the description with another description

update the description with another description

Attributes

definition of the value, possibly evaluating to different results each time it is invoked

definition of the value, possibly evaluating to different results each time it is invoked

Attributes

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product

Concrete fields

lazy val value: T

the value is only evaluated if necessary

the value is only evaluated if necessary

Attributes