org.scalatest.matchers

MatcherFactory8

abstract class MatcherFactory8[-SC, TC1[_], TC2[_], TC3[_], TC4[_], TC5[_], TC6[_], TC7[_], TC8[_]] extends AnyRef

A matcher factory that can produce a matcher given eight typeclass instances.

In the type parameters for this class, "SC" means superclass; "TC" (in TC1, TC2, etc.) means typeclass. This class's matcher factory method will produce a Matcher[T], where T is a subtype of (or the same type as) SC, given a typeclass instance for each TCn implicit parameter (for example, a TC1[T], TC2[T], etc.).

Self Type
MatcherFactory8[SC, TC1, TC2, TC3, TC4, TC5, TC6, TC7, TC8]
Source
MatcherFactory8.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MatcherFactory8
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MatcherFactory8()

Type Members

  1. final class AndBeWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  2. final class AndContainWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  3. final class AndEndWithWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  4. final class AndFullyMatchWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  5. final class AndHaveWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  6. final class AndIncludeWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  7. final class AndNotWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  8. final class AndStartWithWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  9. final class OrBeWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  10. final class OrContainWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  11. final class OrEndWithWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  12. final class OrFullyMatchWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  13. final class OrHaveWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  14. final class OrIncludeWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  15. final class OrNotWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

  16. final class OrStartWithWord extends AnyRef

    This class is part of the ScalaTest matchers DSL.

Abstract Value Members

  1. abstract def matcher[T <: SC](implicit arg0: TC1[T], arg1: TC2[T], arg2: TC3[T], arg3: TC4[T], arg4: TC5[T], arg5: TC6[T], arg6: TC7[T], arg7: TC8[T]): Matcher[T]

    Factory method that will produce a Matcher[T], where T is a subtype of (or the same type as) SC, given a typeclass instance for each TCn implicit parameter (for example, a TC1[T], TC2[T], etc.).

    Factory method that will produce a Matcher[T], where T is a subtype of (or the same type as) SC, given a typeclass instance for each TCn implicit parameter (for example, a TC1[T], TC2[T], etc.).

Concrete 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 and(notExist: ResultOfNotExist): MatcherFactory9[SC, TC1, TC2, TC3, TC4, TC5, TC6, TC7, TC8, Existence]

    This method enables the following syntax:

    This method enables the following syntax:

    aMatcherFactory and not (exist)
                    ^
    

  7. def and(existWord: ExistWord): MatcherFactory9[SC, TC1, TC2, TC3, TC4, TC5, TC6, TC7, TC8, Existence]

    This method enables the following syntax:

    This method enables the following syntax:

    aMatcherFactory and exist
                    ^
    

  8. def and(notWord: NotWord)(implicit prettifier: Prettifier, pos: Position): AndNotWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory and not contain value (3)
                    ^
    

  9. def and(endWithWord: EndWithWord): AndEndWithWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory and endWith regex (decimalRegex)
                    ^
    

  10. def and(startWithWord: StartWithWord): AndStartWithWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory and startWith regex ("1.7")
                    ^
    

  11. def and(includeWord: IncludeWord): AndIncludeWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory and include regex ("wor.d")
                    ^
    

  12. def and(fullyMatchWord: FullyMatchWord): AndFullyMatchWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory and fullyMatch regex (decimalRegex)
                    ^
    

  13. def and(beWord: BeWord): AndBeWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory and be a ('file)
                    ^
    

  14. def and(containWord: ContainWord)(implicit prettifier: Prettifier, pos: Position): AndContainWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory and contain key ("one")
                    ^
    

  15. def and(haveWord: HaveWord): AndHaveWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory and have size (3 - 1)
                        ^
    

  16. def and[U <: SC, TC9[_]](rightMatcherFactory: MatcherFactory1[U, TC9]): MatcherFactory9[U, TC1, TC2, TC3, TC4, TC5, TC6, TC7, TC8, TC9]

    Ands this matcher factory with the passed matcher factory.

  17. def and[U <: SC](rightMatcherFactory: MatcherFactory1[U, TC8]): MatcherFactory8[U, TC1, TC2, TC3, TC4, TC5, TC6, TC7, TC8]

    Ands this matcher factory with the passed MatcherFactory1 that has the same final typeclass as this one.

    Ands this matcher factory with the passed MatcherFactory1 that has the same final typeclass as this one.

  18. def and[U <: SC](rightMatcher: Matcher[U]): MatcherFactory8[U, TC1, TC2, TC3, TC4, TC5, TC6, TC7, TC8]

    Ands this matcher factory with the passed matcher.

  19. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  20. def clone(): AnyRef

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

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

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

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

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

    Definition Classes
    AnyRef → Any
  26. final def isInstanceOf[T0]: Boolean

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

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

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

    Definition Classes
    AnyRef
  30. def or(notExist: ResultOfNotExist): MatcherFactory9[SC, TC1, TC2, TC3, TC4, TC5, TC6, TC7, TC8, Existence]

    This method enables the following syntax:

    This method enables the following syntax:

    aMatcherFactory or not (exist)
                    ^
    

  31. def or(existWord: ExistWord): MatcherFactory9[SC, TC1, TC2, TC3, TC4, TC5, TC6, TC7, TC8, Existence]

    This method enables the following syntax:

    This method enables the following syntax:

    aMatcherFactory or exist
                    ^
    

  32. def or(notWord: NotWord)(implicit prettifier: Prettifier, pos: Position): OrNotWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory or not contain value (3)
                    ^
    

  33. def or(endWithWord: EndWithWord): OrEndWithWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory or endWith regex ("7b")
                    ^
    

  34. def or(startWithWord: StartWithWord): OrStartWithWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory or startWith regex ("1.7")
                    ^
    

  35. def or(includeWord: IncludeWord): OrIncludeWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory or include regex ("1.7")
                    ^
    

  36. def or(fullyMatchWord: FullyMatchWord): OrFullyMatchWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory or fullyMatch regex (decimal)
                    ^
    

  37. def or(beWord: BeWord): OrBeWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory or be a ('directory)
                    ^
    

  38. def or(containWord: ContainWord)(implicit prettifier: Prettifier, pos: Position): OrContainWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    (aMatcherFactory or contain value (1))
                     ^
    

  39. def or(haveWord: HaveWord): OrHaveWord

    This method enables the following syntax given a MatcherFactory8:

    This method enables the following syntax given a MatcherFactory8:

    aMatcherFactory or have size (3 - 1)
                    ^
    

  40. def or[U <: SC, TC9[_]](rightMatcherFactory: MatcherFactory1[U, TC9]): MatcherFactory9[U, TC1, TC2, TC3, TC4, TC5, TC6, TC7, TC8, TC9]

    Ors this matcher factory with the passed matcher factory.

  41. def or[U <: SC](rightMatcherFactory: MatcherFactory1[U, TC8]): MatcherFactory8[U, TC1, TC2, TC3, TC4, TC5, TC6, TC7, TC8]

    Ors this matcher factory with the passed MatcherFactory1 that has the same final typeclass as this one.

    Ors this matcher factory with the passed MatcherFactory1 that has the same final typeclass as this one.

  42. def or[U <: SC](rightMatcher: Matcher[U]): MatcherFactory8[U, TC1, TC2, TC3, TC4, TC5, TC6, TC7, TC8]

    Ors this matcher factory with the passed matcher.

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

    Definition Classes
    AnyRef
  44. def toString(): String

    Definition Classes
    AnyRef → Any
  45. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped