org.scalatest.WillMatchers

FactResultOfContainWordForCollectedAny

final class FactResultOfContainWordForCollectedAny[T] extends AnyRef

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

Source
WillMatchers.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. FactResultOfContainWordForCollectedAny
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FactResultOfContainWordForCollectedAny(collected: Collected, xs: GenTraversable[T], original: Any, willBeTrue: Boolean, prettifier: Prettifier, pos: Position)

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 allElementsOf(elements: GenTraversable[Any])(implicit aggregating: Aggregating[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain allElementsOf (1, 2)
                          ^
    

  7. def allOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit aggregating: Aggregating[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain allOf (1, 2)
                          ^
    

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def atLeastOneElementOf(elements: GenTraversable[Any])(implicit aggregating: Aggregating[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain atLeastOneElementOf List(1, 2)
                          ^
    

  10. def atLeastOneOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit aggregating: Aggregating[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain atLeastOneOf (1, 2)
                          ^
    

  11. def atMostOneElementOf(elements: GenTraversable[Any])(implicit aggregating: Aggregating[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    all(xs) will contain atMostOneElementOf (1, 2)
                           ^
    

  12. def atMostOneOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit aggregating: Aggregating[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    all(xs) will contain atMostOneOf (1, 2)
                           ^
    

  13. def clone(): AnyRef

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  19. def inOrder(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit sequencing: Sequencing[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain inOrder (1, 2)
                          ^
    

  20. def inOrderElementsOf(elements: GenTraversable[Any])(implicit sequencing: Sequencing[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain inOrderElementsOf (1, 2)
                          ^
    

  21. def inOrderOnly(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit sequencing: Sequencing[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain inOrderOnly (1, 2)
                          ^
    

  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. def key(expectedKey: Any)(implicit keyMapping: KeyMapping[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    all(colOfMap) will contain key ("one")
                                 ^
    

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

    Definition Classes
    AnyRef
  25. def noElementsOf(elements: GenTraversable[Any])(implicit containing: Containing[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain noElementsOf (1, 2)
                          ^
    

  26. def noneOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit containing: Containing[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain noneOf (1, 2)
                          ^
    

  27. final def notify(): Unit

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

    Definition Classes
    AnyRef
  29. def oneElementOf(elements: GenTraversable[Any])(implicit containing: Containing[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain oneElementOf List(1, 2)
                          ^
    

  30. def oneOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit containing: Containing[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain oneOf (1, 2)
                          ^
    

  31. def only(right: Any*)(implicit aggregating: Aggregating[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain only (1, 2)
                          ^
    

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

    Definition Classes
    AnyRef
  33. def theSameElementsAs(right: GenTraversable[_])(implicit aggregating: Aggregating[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain theSameElementsAs (1, 2)
                          ^
    

  34. def theSameElementsInOrderAs(right: GenTraversable[_])(implicit sequencing: Sequencing[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    option will contain theSameElementsInOrderAs (1, 2)
                          ^
    

  35. def toString(): String

    Overrides to return pretty toString.

    Overrides to return pretty toString.

    returns

    "FactResultOfContainWordForCollectedAny([collected], [xs], [willBeTrue])"

    Definition Classes
    FactResultOfContainWordForCollectedAny → AnyRef → Any
  36. def value(expectedValue: Any)(implicit valueMapping: ValueMapping[T]): Fact

    This method enables the following syntax:

    This method enables the following syntax:

    all(colOfMap) will contain value (1)
                                 ^
    

  37. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped