Packages

c

org.specs2.matcher

RightMatcher

case class RightMatcher[T]() extends OptionLikeMatcher[[a]Either[Any, a], T, T] with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, OptionLikeMatcher[[a]Either[Any, a], T, T], Matcher[Either[Any, T]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RightMatcher
  2. Serializable
  3. Product
  4. Equals
  5. OptionLikeMatcher
  6. Matcher
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RightMatcher()

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 ^^[S](f: (S) => Expectable[Either[Any, T]], dummy: Int = 0): Matcher[S]

    Adapt a matcher to another.

    Adapt a matcher to another. ex: be_==("message") ^^ (_.getMessage aka "trimmed") can be applied to an exception

    The dummy value is used to help to disambiguate with the overloaded ^^ function

    Definition Classes
    Matcher
  5. def ^^[S](f: (S) => Either[Any, T]): Matcher[S]

    Adapt a matcher to another.

    Adapt a matcher to another. ex: be_==("message") ^^ (_.getMessage) can be applied to an exception

    Definition Classes
    Matcher
  6. def and[S <: Either[Any, T]](m: => Matcher[S]): Matcher[S]

    the logical and between 2 matchers

    the logical and between 2 matchers

    Definition Classes
    Matcher
    See also

    MatchResult.and

  7. def apply[S <: Either[Any, T]](value: Expectable[S]): MatchResult[S]

    apply this matcher to an Expectable

    apply this matcher to an Expectable

    returns

    a MatchResult describing the outcome of the match

    Definition Classes
    OptionLikeMatcherMatcher
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def eventually(retries: Int, sleep: (Int) => Duration): Matcher[Either[Any, T]]

    sleep

    the function applied on the retry number (first is 1)

    returns

    a matcher that needs to eventually match, after a given number of retries and a sleep time

    aResult mustEqual(expected).eventually(retries = 2, _ * 100.milliseconds)
    Definition Classes
    Matcher
  12. def eventually(retries: Int, sleep: Duration): Matcher[Either[Any, T]]

    returns

    a matcher that needs to eventually match, after a given number of retries and a sleep time

    Definition Classes
    Matcher
  13. def eventually: Matcher[Either[Any, T]]

    returns

    a matcher that needs to eventually match, after 40 retries and a sleep time of 100 milliseconds

    Definition Classes
    Matcher
  14. def failure[S <: Either[Any, T]](message: => String, value: Expectable[S]): MatchResult[S]

    This method can be used to create a failed match result

    This method can be used to create a failed match result

    Attributes
    protected
    Definition Classes
    Matcher
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def iff(b: Boolean): Matcher[Either[Any, T]]

    when the condition is true the matcher is applied, when it's false, the matcher must fail

    when the condition is true the matcher is applied, when it's false, the matcher must fail

    Definition Classes
    Matcher
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def lazily: Matcher[() => Either[Any, T]]

    The lazily operator returns a Matcher which will match a function returning the expected value

    The lazily operator returns a Matcher which will match a function returning the expected value

    Definition Classes
    Matcher
  20. def like[R](f: PartialFunction[T, R])(implicit arg0: AsResult[R]): OptionLikeCheckedMatcher[[a]Either[Any, a], T, T]
    Definition Classes
    OptionLikeMatcher
  21. def mute: Matcher[Either[Any, T]]

    returns

    a Matcher with no messages

    Definition Classes
    Matcher
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. def not: Matcher[Either[Any, T]]

    negate a Matcher

    negate a Matcher

    Definition Classes
    Matcher
    See also

    MatchResult.not

  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def or[S <: Either[Any, T]](m: => Matcher[S]): Matcher[S]

    the logical or between 2 matchers

    the logical or between 2 matchers

    Definition Classes
    Matcher
    See also

    MatchResult.or

  27. def orPending(message: (String) => String): Matcher[Either[Any, T]]

    returns

    a Pending MatchResult if this matcher fails, modifying the failure message with a pending message.

    Definition Classes
    Matcher
  28. def orPending(m: String): Matcher[Either[Any, T]]

    returns

    a Pending MatchResult if this matcher fails, prefixing the failure message with a pending message. If the pending message is empty, only the failure message is printed

    Definition Classes
    Matcher
  29. def orPending: Matcher[Either[Any, T]]

    returns

    a Pending MatchResult if this matcher fails

    Definition Classes
    Matcher
  30. def orSkip(message: (String) => String): Matcher[Either[Any, T]]

    returns

    a Skip MatchResult if this matcher fails, modifying the failure message with a skip message.

    Definition Classes
    Matcher
  31. def orSkip(m: String): Matcher[Either[Any, T]]

    returns

    a Skip MatchResult if this matcher fails, prefixing the failure message with a skip message. If the skip message is empty, only the failure message is printed

    Definition Classes
    Matcher
  32. def orSkip: Matcher[Either[Any, T]]

    returns

    a Skip MatchResult if this matcher fails

    Definition Classes
    Matcher
  33. def productElementNames: Iterator[String]
    Definition Classes
    Product
  34. def result[S <: Either[Any, T]](other: MatchResultMessages.MatchResultMessage, value: Expectable[S]): MatchResult[S]

    returns

    a MatchResult using the messages embedded in a MatchResultMessage (i.e. an accumulation of messages from other matches)

    Attributes
    protected
    Definition Classes
    Matcher
  35. def result[S <: Either[Any, T]](other: Result, value: Expectable[S]): MatchResult[S]

    returns

    a Match Result from another result

    Attributes
    protected
    Definition Classes
    Matcher
  36. def result[S <: Either[Any, T]](other: MatchResult[_], value: Expectable[S]): MatchResult[S]

    returns

    a MatchResult copied on another one, but with a different expectable

    Attributes
    protected
    Definition Classes
    Matcher
  37. def result[S <: Either[Any, T]](test: => Boolean, okMessage: => String, koMessage: => String, value: Expectable[S], details: Details): MatchResult[S]

    returns

    a MatchResult with an okMessage, a koMessage, the expectable value and details about the failure if any

    Attributes
    protected
    Definition Classes
    Matcher
  38. def result[S <: Either[Any, T]](test: => Boolean, okMessage: => String, koMessage: => String, value: Expectable[S], expected: String, actual: String): MatchResult[S]

    returns

    a MatchResult with an okMessage, a koMessage, the expectable value and the expected/actual values as string to display a failure comparison if necessary

    Attributes
    protected
    Definition Classes
    Matcher
  39. def result[S <: Either[Any, T]](triplet: => (Boolean, String, String), value: Expectable[S]): MatchResult[S]

    returns

    a MatchResult with an okMessage, a koMessage and the expectable value

    Attributes
    protected
    Definition Classes
    Matcher
  40. def result[S <: Either[Any, T]](test: => Boolean, okMessage: => String, koMessage: => String, value: Expectable[S]): MatchResult[S]

    returns

    a MatchResult with an okMessage, a koMessage and the expectable value

    Attributes
    protected
    Definition Classes
    Matcher
  41. def setMessage(message: String): Matcher[Either[Any, T]]

    returns

    set a new failure message of a matcher

    Definition Classes
    Matcher
  42. def success[S <: Either[Any, T]](message: => String, value: Expectable[S]): MatchResult[S]

    This method can be used to create a successful match result

    This method can be used to create a successful match result

    Attributes
    protected
    Definition Classes
    Matcher
  43. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  44. def test: (Either[Any, T]) => Boolean

    returns

    a test function corresponding to this matcher

    Definition Classes
    Matcher
  45. def unless(b: Boolean, m: String = ""): Matcher[Either[Any, T]]

    only apply this matcher if the condition is false

    only apply this matcher if the condition is false

    Definition Classes
    Matcher
  46. def updateMessage(f: (String) => String): Matcher[Either[Any, T]]

    returns

    update the failure message of a matcher

    Definition Classes
    Matcher
  47. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  48. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  49. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  50. def when(b: Boolean, m: String = ""): Matcher[Either[Any, T]]

    only apply this matcher if the condition is true

    only apply this matcher if the condition is true

    Definition Classes
    Matcher
  51. def which[R](f: (T) => R)(implicit arg0: AsResult[R]): OptionLikeCheckedMatcher[[a]Either[Any, a], T, T]
    Definition Classes
    OptionLikeMatcher

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from OptionLikeMatcher[[a]Either[Any, a], T, T]

Inherited from Matcher[Either[Any, T]]

Inherited from AnyRef

Inherited from Any

Ungrouped