Packages

final class AndBeWord 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
MatcherFactory4.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AndBeWord
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AndBeWord()

Value Members

  1. def a[U](aMatcher: AMatcher[U]): MatcherFactory4[SC with U, TC1, TC2, TC3, TC4]

    This method enables the following syntax given a MatcherFactory4, where validNumber is an AMatcher:

    This method enables the following syntax given a MatcherFactory4, where validNumber is an AMatcher:

    aMatcherFactory and be a (validNumber)
                           ^
    

  2. def a[U](bePropertyMatcher: BePropertyMatcher[U]): MatcherFactory4[SC with U, TC1, TC2, TC3, TC4]

    This method enables the following syntax given a MatcherFactory4, where file is a BePropertyMatcher:

    This method enables the following syntax given a MatcherFactory4, where file is a BePropertyMatcher:

    aMatcherFactory and be a (file)
                           ^
    

  3. def an[U](anMatcher: AnMatcher[U]): MatcherFactory4[SC with U, TC1, TC2, TC3, TC4]

    This method enables the following syntax given a MatcherFactory4, where integerNumber is an AnMatcher:

    This method enables the following syntax given a MatcherFactory4, where integerNumber is an AnMatcher:

    aMatcherFactory and be an (integerNumber)
                           ^
    

  4. def an[U](bePropertyMatcher: BePropertyMatcher[U]): MatcherFactory4[SC with U, TC1, TC2, TC3, TC4]

    This method enables the following syntax given a MatcherFactory4, where apple is a BePropertyMatcher:

    This method enables the following syntax given a MatcherFactory4, where apple is a BePropertyMatcher:

    aMatcherFactory and be an (apple)
                           ^
    

  5. def definedAt[A, U <: PartialFunction[A, _]](right: A): MatcherFactory4[SC with U, TC1, TC2, TC3, TC4]

    This method enables the following syntax, where fraction refers to a PartialFunction:

    This method enables the following syntax, where fraction refers to a PartialFunction:

    aMatcherFactory and be definedAt (8)
                           ^
    

  6. def theSameInstanceAs(anyRef: AnyRef): MatcherFactory4[SC, TC1, TC2, TC3, TC4]

    This method enables the following syntax given a MatcherFactory4:

    This method enables the following syntax given a MatcherFactory4:

    aMatcherFactory and be theSameInstanceAs (string)
                           ^