OrContainWord

final class OrContainWord(prettifier: Prettifier, pos: Position)

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

class Object
trait Matchable
class Any

Value members

Concrete methods

infix def allElementsOf(elements: Iterable[Any]): MatcherFactory1[T, Aggregating]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain allElementsOf List(1, 2, 3)
                   ^
infix def allOf(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory1[T, Aggregating]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain allOf (1, 2, 3)
                   ^
def apply[U](expectedElement: Any): MatcherFactory1[T & U, Containing]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain (3 - 1)
                   ^
infix def atLeastOneElementOf(elements: Iterable[Any]): MatcherFactory1[T, Aggregating]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain atLeastOneElementOf (1, 2, 3)
                   ^
infix def atLeastOneOf(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory1[T, Aggregating]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain atLeastOneOf (1, 2, 3)
                   ^
infix def atMostOneElementOf(elements: Iterable[Any]): MatcherFactory1[T, Aggregating]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain atMostOneOf List(1, 2, 3)
                   ^
infix def atMostOneOf(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory1[T, Aggregating]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain atMostOneOf (1, 2, 3)
                   ^
infix def inOrder(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory1[T, Sequencing]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain inOrder (1, 2, 3)
                   ^
infix def inOrderElementsOf(elements: Iterable[Any]): MatcherFactory1[T, Sequencing]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain inOrderElementsOf List(1, 2, 3)
                   ^
infix def inOrderOnly(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory1[T, Sequencing]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain inOrderOnly (1, 2, 3)
                   ^
infix def key(expectedKey: Any): MatcherFactory1[T, KeyMapping]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain key ("one")
                   ^
infix def noElementsOf(elements: Iterable[Any]): MatcherFactory1[T, Containing]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain noElementsOf (1, 2, 3)
                   ^
infix def noneOf(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory1[T, Containing]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain noneOf (1, 2, 3)
                   ^
infix def oneElementOf(elements: Iterable[Any]): MatcherFactory1[T, Containing]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain oneElementOf (1, 2, 3)
                   ^
infix def oneOf(firstEle: Any, secondEle: Any, remainingEles: Any*): MatcherFactory1[T, Containing]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain oneOf (1, 2, 3)
                   ^
infix def only(right: Any*): MatcherFactory1[T, Aggregating]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain only (1, 2, 3)
                   ^
infix def theSameElementsAs(right: Iterable[_]): MatcherFactory1[T, Aggregating]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain theSameElementsAs List(1, 2, 3)
                   ^
infix def theSameElementsInOrderAs(right: Iterable[_]): MatcherFactory1[T, Sequencing]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain theSameElementsInOrderAs List(1, 2, 3)
                   ^
infix def value(expectedValue: Any): MatcherFactory1[T, ValueMapping]

This method enables the following syntax:

This method enables the following syntax:

aMatcher or contain value (1)
                   ^