org.scalatest.matchers

MatcherFactory6

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

A matcher factory that can produce a matcher given six 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
MatcherFactory6[SC, TC1, TC2, TC3, TC4, TC5, TC6]
Source
MatcherFactory6.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MatcherFactory6
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MatcherFactory6()

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]): 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.).

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): MatcherFactory7[SC, TC1, TC2, TC3, TC4, TC5, TC6, Existence]

    This method enables the following syntax:

    This method enables the following syntax:

    aMatcherFactory and not (exist)
                    ^
    

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

    This method enables the following syntax:

    This method enables the following syntax:

    aMatcherFactory and exist
                    ^
    

  8. def and(notWord: NotWord): AndNotWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory and not contain value (3)
                    ^
    

  9. def and(endWithWord: EndWithWord): AndEndWithWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory and endWith regex (decimalRegex)
                    ^
    

  10. def and(startWithWord: StartWithWord): AndStartWithWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory and startWith regex ("1.7")
                    ^
    

  11. def and(includeWord: IncludeWord): AndIncludeWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

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

  12. def and(fullyMatchWord: FullyMatchWord): AndFullyMatchWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory and fullyMatch regex (decimalRegex)
                    ^
    

  13. def and(beWord: BeWord): AndBeWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory and be a ('file)
                    ^
    

  14. def and(containWord: ContainWord): AndContainWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory and contain key ("one")
                    ^
    

  15. def and(haveWord: HaveWord): AndHaveWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory and have size (3 - 1)
                        ^
    

  16. def and[U <: SC, TC7[_], TC8[_], TC9[_]](rightMatcherFactory: MatcherFactory3[U, TC7, TC8, 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, TC7[_], TC8[_]](rightMatcherFactory: MatcherFactory2[U, TC7, TC8]): MatcherFactory8[U, TC1, TC2, TC3, TC4, TC5, TC6, TC7, TC8]

    Ands this matcher factory with the passed matcher factory.

  18. def and[U <: SC, TC7[_]](rightMatcherFactory: MatcherFactory1[U, TC7]): MatcherFactory7[U, TC1, TC2, TC3, TC4, TC5, TC6, TC7]

    Ands this matcher factory with the passed matcher factory.

  19. def and[U <: SC](rightMatcherFactory: MatcherFactory1[U, TC6]): MatcherFactory6[U, TC1, TC2, TC3, TC4, TC5, TC6]

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

  20. def and[U <: SC](rightMatcher: Matcher[U]): MatcherFactory6[U, TC1, TC2, TC3, TC4, TC5, TC6]

    Ands this matcher factory with the passed matcher.

  21. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  22. def clone(): AnyRef

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

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

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

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

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

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

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

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

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

    Definition Classes
    AnyRef
  32. def or(notExist: ResultOfNotExist): MatcherFactory7[SC, TC1, TC2, TC3, TC4, TC5, TC6, Existence]

    This method enables the following syntax:

    This method enables the following syntax:

    aMatcherFactory or not (exist)
                    ^
    

  33. def or(existWord: ExistWord): MatcherFactory7[SC, TC1, TC2, TC3, TC4, TC5, TC6, Existence]

    This method enables the following syntax:

    This method enables the following syntax:

    aMatcherFactory or exist
                    ^
    

  34. def or(notWord: NotWord): OrNotWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory or not contain value (3)
                    ^
    

  35. def or(endWithWord: EndWithWord): OrEndWithWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory or endWith regex ("7b")
                    ^
    

  36. def or(startWithWord: StartWithWord): OrStartWithWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory or startWith regex ("1.7")
                    ^
    

  37. def or(includeWord: IncludeWord): OrIncludeWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory or include regex ("1.7")
                    ^
    

  38. def or(fullyMatchWord: FullyMatchWord): OrFullyMatchWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory or fullyMatch regex (decimal)
                    ^
    

  39. def or(beWord: BeWord): OrBeWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory or be a ('directory)
                    ^
    

  40. def or(containWord: ContainWord): OrContainWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    (aMatcherFactory or contain value (1))
                     ^
    

  41. def or(haveWord: HaveWord): OrHaveWord

    This method enables the following syntax given a MatcherFactory6:

    This method enables the following syntax given a MatcherFactory6:

    aMatcherFactory or have size (3 - 1)
                    ^
    

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

    Ors this matcher factory with the passed matcher factory.

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

    Ors this matcher factory with the passed matcher factory.

  44. def or[U <: SC, TC7[_]](rightMatcherFactory: MatcherFactory1[U, TC7]): MatcherFactory7[U, TC1, TC2, TC3, TC4, TC5, TC6, TC7]

    Ors this matcher factory with the passed matcher factory.

  45. def or[U <: SC](rightMatcherFactory: MatcherFactory1[U, TC6]): MatcherFactory6[U, TC1, TC2, TC3, TC4, TC5, TC6]

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

  46. def or[U <: SC](rightMatcher: Matcher[U]): MatcherFactory6[U, TC1, TC2, TC3, TC4, TC5, TC6]

    Ors this matcher factory with the passed matcher.

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

    Definition Classes
    AnyRef
  48. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped