MatcherFactory7

abstract class MatcherFactory7[-SC, TC1[_], TC2[_], TC3[_], TC4[_], TC5[_], TC6[_], TC7[_]]

A matcher factory that can produce a matcher given seven 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.).

Companion:
object
class Object
trait Matchable
class Any
MatcherFactory7[SC, TC1, TC2, TC3, TC4, TC5, TC6, TC7]

Type members

Classlikes

final class AndBeWord

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

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

final class AndContainWord(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.

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

final class AndEndWithWord

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

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

final class AndFullyMatchWord

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

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

final class AndHaveWord

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

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

final class AndIncludeWord

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

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

final class AndNotWord(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.

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

final class AndStartWithWord

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

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

final class OrBeWord

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

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

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.

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

final class OrEndWithWord

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

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

final class OrFullyMatchWord

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

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

final class OrHaveWord

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

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

final class OrIncludeWord

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

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

final class OrNotWord(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.

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

final class OrStartWithWord

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

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

Value members

Abstract methods

def matcher[T <: SC : TC7]: 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 methods

infix def and[U <: SC](rightMatcher: Matcher[U]): MatcherFactory7[U, TC1, TC2, TC3, TC4, TC5, TC6, TC7]

Ands this matcher factory with the passed matcher.

Ands this matcher factory with the passed matcher.

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

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.

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

Ands this matcher factory with the passed matcher factory.

Ands this matcher factory with the passed matcher factory.

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

Ands this matcher factory with the passed matcher factory.

Ands this matcher factory with the passed matcher factory.

infix def and(haveWord: HaveWord): AndHaveWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory and have size (3 - 1)
                   ^
infix def and(containWord: ContainWord)(implicit prettifier: Prettifier, pos: Position): AndContainWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory and contain key ("one")
               ^
infix def and(beWord: BeWord): AndBeWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory and be a ('file)
               ^
infix def and(fullyMatchWord: FullyMatchWord): AndFullyMatchWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory and fullyMatch regex (decimalRegex)
               ^
infix def and(includeWord: IncludeWord): AndIncludeWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory and include regex ("wor.d")
               ^
infix def and(startWithWord: StartWithWord): AndStartWithWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory and startWith regex ("1.7")
               ^
infix def and(endWithWord: EndWithWord): AndEndWithWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory and endWith regex (decimalRegex)
               ^
infix def and(notWord: NotWord)(implicit prettifier: Prettifier, pos: Position): AndNotWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory and not contain value (3)
               ^
infix def and(existWord: ExistWord): MatcherFactory8[SC, TC1, TC2, TC3, TC4, TC5, TC6, TC7, Existence]

This method enables the following syntax:

This method enables the following syntax:

aMatcherFactory and exist
               ^
infix def and(notExist: ResultOfNotExist): MatcherFactory8[SC, TC1, TC2, TC3, TC4, TC5, TC6, TC7, Existence]

This method enables the following syntax:

This method enables the following syntax:

aMatcherFactory and not (exist)
               ^
infix def or[U <: SC](rightMatcher: Matcher[U]): MatcherFactory7[U, TC1, TC2, TC3, TC4, TC5, TC6, TC7]

Ors this matcher factory with the passed matcher.

Ors this matcher factory with the passed matcher.

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

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.

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

Ors this matcher factory with the passed matcher factory.

Ors this matcher factory with the passed matcher factory.

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

Ors this matcher factory with the passed matcher factory.

Ors this matcher factory with the passed matcher factory.

infix def or(haveWord: HaveWord): OrHaveWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory or have size (3 - 1)
               ^
infix def or(containWord: ContainWord)(implicit prettifier: Prettifier, pos: Position): OrContainWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

(aMatcherFactory or contain value (1))
                ^
infix def or(beWord: BeWord): OrBeWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory or be a ('directory)
               ^
infix def or(fullyMatchWord: FullyMatchWord): OrFullyMatchWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory or fullyMatch regex (decimal)
               ^
infix def or(includeWord: IncludeWord): OrIncludeWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory or include regex ("1.7")
               ^
infix def or(startWithWord: StartWithWord): OrStartWithWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory or startWith regex ("1.7")
               ^
infix def or(endWithWord: EndWithWord): OrEndWithWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory or endWith regex ("7b")
               ^
infix def or(notWord: NotWord)(implicit prettifier: Prettifier, pos: Position): OrNotWord

This method enables the following syntax given a MatcherFactory7:

This method enables the following syntax given a MatcherFactory7:

aMatcherFactory or not contain value (3)
               ^
infix def or(existWord: ExistWord): MatcherFactory8[SC, TC1, TC2, TC3, TC4, TC5, TC6, TC7, Existence]

This method enables the following syntax:

This method enables the following syntax:

aMatcherFactory or exist
               ^
infix def or(notExist: ResultOfNotExist): MatcherFactory8[SC, TC1, TC2, TC3, TC4, TC5, TC6, TC7, Existence]

This method enables the following syntax:

This method enables the following syntax:

aMatcherFactory or not (exist)
               ^