Class

org.scalatest.matchers.MatcherFactory2

OrContainWord

Related Doc: package MatcherFactory2

Permalink

final class OrContainWord extends AnyRef

This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers for an overview of the matchers DSL.

Source
MatcherFactory2.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. OrContainWord
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OrContainWord()

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def allElementsOf(elements: GenTraversable[Any]): MatcherFactory3[SC, TC1, TC2, Aggregating]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain allElementsOf (1, 2, 3)
                               ^
    

  5. def allOf(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory3[SC, TC1, TC2, Aggregating]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain allOf (1, 2, 3)
                               ^
    

  6. def apply(expectedElement: Any): MatcherFactory3[SC, TC1, TC2, Containing]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain (3 - 1)
                               ^
    

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def atLeastOneElementOf(elements: GenTraversable[Any]): MatcherFactory3[SC, TC1, TC2, Aggregating]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain atLeastOneOf (1, 2, 3)
                               ^
    

  9. def atLeastOneOf(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory3[SC, TC1, TC2, Aggregating]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain atLeastOneOf (1, 2, 3)
                               ^
    

  10. def atMostOneElementOf(elements: GenTraversable[Any]): MatcherFactory3[SC, TC1, TC2, Aggregating]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain atMostOneOf (1, 2, 3)
                               ^
    

  11. def atMostOneOf(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory3[SC, TC1, TC2, Aggregating]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain atMostOneOf (1, 2, 3)
                               ^
    

  12. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  18. def inOrder(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory3[SC, TC1, TC2, Sequencing]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain inOrder (1, 2, 3)
                               ^
    

  19. def inOrderElementsOf(elements: GenTraversable[Any]): MatcherFactory3[SC, TC1, TC2, Sequencing]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain inOrderElementsOf List(1, 2, 3)
                               ^
    

  20. def inOrderOnly(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory3[SC, TC1, TC2, Sequencing]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain inOrderOnly (1, 2, 3)
                               ^
    

  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def key(expectedKey: Any): MatcherFactory3[SC, TC1, TC2, KeyMapping]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain key ("one")
                               ^
    

  23. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. def noElementsOf(elements: GenTraversable[Any]): MatcherFactory3[SC, TC1, TC2, Containing]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain noElementsOf (1, 2, 3)
                               ^
    

  25. def noneOf(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory3[SC, TC1, TC2, Containing]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain noneOf (1, 2, 3)
                               ^
    

  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. def oneElementOf(elements: GenTraversable[Any]): MatcherFactory3[SC, TC1, TC2, Containing]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain oneElementOf (1, 2, 3)
                               ^
    

  29. def oneOf(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory3[SC, TC1, TC2, Containing]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain oneOf (1, 2, 3)
                               ^
    

  30. def only(right: Any*): MatcherFactory3[SC, TC1, TC2, Aggregating]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain only (1, 2, 3)
                               ^
    

  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  32. def theSameElementsAs(right: GenTraversable[_]): MatcherFactory3[SC, TC1, TC2, Aggregating]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain theSameElementsAs List(1, 2, 3)
                               ^
    

  33. def theSameElementsInOrderAs(right: GenTraversable[_]): MatcherFactory3[SC, TC1, TC2, Sequencing]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain theSameElementsInOrderAs List(1, 2, 3)
                               ^
    

  34. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  35. def value(expectedValue: Any): MatcherFactory3[SC, TC1, TC2, ValueMapping]

    Permalink

    This method enables the following syntax given a MatcherFactory2:

    This method enables the following syntax given a MatcherFactory2:

    aMatcherFactory or contain value (1)
                               ^
    

  36. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped