org.specs2.matcher

ContainAnyOfMatcher

class ContainAnyOfMatcher[T] extends AbstractContainMatcher[T]

Linear Supertypes
AbstractContainMatcher[T], Matcher[GenTraversableOnce[T]], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ContainAnyOfMatcher
  2. AbstractContainMatcher
  3. Matcher
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ContainAnyOfMatcher(expected: Seq[T], equality: (T, T) ⇒ Boolean = ...)

Type Members

  1. type M[T] = ContainAnyOfMatcher[T]

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def ^^[S](m: (T) ⇒ Matcher[T]): M[T]

    use a matcher function to define if 2 values are equal.

    use a matcher function to define if 2 values are equal. The first value defines a matcher to use with the second one

    Definition Classes
    AbstractContainMatcher
  7. def ^^[S](equality: (T, T) ⇒ Boolean): M[T]

    use a specific equality function

    use a specific equality function

    Definition Classes
    AbstractContainMatcher
  8. def ^^[S](f: (S) ⇒ Expectable[GenTraversableOnce[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
  9. def ^^[S](f: (S) ⇒ GenTraversableOnce[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
  10. def ^^^[S](adaptator: (T) ⇒ S): M[T]

    use a specific adaption function before checking for equality

    use a specific adaption function before checking for equality

    Definition Classes
    AbstractContainMatcher
  11. def and[S <: GenTraversableOnce[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

  12. def apply[S <: GenTraversableOnce[T]](actual: 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
    ContainAnyOfMatcherMatcher
  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def create(seq: ⇒ Seq[T], eq: (T, T) ⇒ Boolean): ContainAnyOfMatcher[T]

  16. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  18. def eventually(retries: Int, sleep: Duration): Matcher[GenTraversableOnce[T]]

    returns

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

    Definition Classes
    Matcher
  19. def eventually: Matcher[GenTraversableOnce[T]]

    returns

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

    Definition Classes
    Matcher
  20. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  22. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  23. def iff(b: Boolean): Matcher[GenTraversableOnce[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
  24. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  25. def lazily: Matcher[() ⇒ GenTraversableOnce[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
  26. def mute: Matcher[GenTraversableOnce[T]]

    returns

    a Matcher with no messages

    Definition Classes
    Matcher
  27. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  28. def not: Matcher[GenTraversableOnce[T]]

    negate a Matcher

    negate a Matcher

    Definition Classes
    Matcher
    See also

    MatchResult.not

  29. final def notify(): Unit

    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  31. def or[S <: GenTraversableOnce[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

  32. def orPending(message: (String) ⇒ String): Matcher[GenTraversableOnce[T]]

    returns

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

    Definition Classes
    Matcher
  33. def orPending(m: String): Matcher[GenTraversableOnce[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
  34. def orPending: Matcher[GenTraversableOnce[T]]

    returns

    a Pending MatchResult if this matcher fails

    Definition Classes
    Matcher
  35. def orSkip(message: (String) ⇒ String): Matcher[GenTraversableOnce[T]]

    returns

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

    Definition Classes
    Matcher
  36. def orSkip(m: String): Matcher[GenTraversableOnce[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
  37. def orSkip: Matcher[GenTraversableOnce[T]]

    returns

    a Skip MatchResult if this matcher fails

    Definition Classes
    Matcher
  38. def result[S <: GenTraversableOnce[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
  39. def result[S <: GenTraversableOnce[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
  40. def result[S <: GenTraversableOnce[T]](test: ⇒ Boolean, okMessage: ⇒ String, koMessage: ⇒ String, value: Expectable[S], expected: String, actual: String): MatchResult[S]

    This convenience method can be used to evaluate a boolean condition and return an appropriate MatchResult

    This convenience method can be used to evaluate a boolean condition and return an appropriate MatchResult

    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
  41. def result[S <: GenTraversableOnce[T]](triplet: ⇒ (Boolean, String, String), value: Expectable[S]): MatchResult[S]

    This convenience method uses a triplet instead of separated arguments

    This convenience method uses a triplet instead of separated arguments

    returns

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

    Attributes
    protected
    Definition Classes
    Matcher
  42. def result[S <: GenTraversableOnce[T]](test: ⇒ Boolean, okMessage: ⇒ String, koMessage: ⇒ String, value: Expectable[S]): MatchResult[S]

    This convenience method can be used to evaluate a boolean condition and return an appropriate MatchResult

    This convenience method can be used to evaluate a boolean condition and return an appropriate MatchResult

    returns

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

    Attributes
    protected
    Definition Classes
    Matcher
  43. def setMessage(message: String): Matcher[GenTraversableOnce[T]]

    returns

    set a new failure message of a matcher

    Definition Classes
    Matcher
  44. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  45. def test: (GenTraversableOnce[T]) ⇒ Boolean

    returns

    a test function corresponding to this matcher

    Definition Classes
    Matcher
  46. def toString(): String

    Definition Classes
    AnyRef → Any
  47. def unless(b: Boolean, m: String = ""): Matcher[GenTraversableOnce[T]]

    only apply this matcher if the condition is false

    only apply this matcher if the condition is false

    Definition Classes
    Matcher
  48. def updateMessage(f: (String) ⇒ String): Matcher[GenTraversableOnce[T]]

    returns

    update the failure message of a matcher

    Definition Classes
    Matcher
  49. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. def when(b: Boolean, m: String = ""): Matcher[GenTraversableOnce[T]]

    only apply this matcher if the condition is true

    only apply this matcher if the condition is true

    Definition Classes
    Matcher

Inherited from AbstractContainMatcher[T]

Inherited from Matcher[GenTraversableOnce[T]]

Inherited from AnyRef

Inherited from Any

Ungrouped