final class AndFullyMatchWord 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
- Matcher.scala
- Alphabetic
- By Inheritance
- AndFullyMatchWord
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new AndFullyMatchWord()
Value Members
-
def
regex(regex: Regex): Matcher[T with String]
This method enables the following syntax:
This method enables the following syntax:
aMatcher and fullyMatch regex (decimalRegex) ^
-
def
regex(regexWithGroups: RegexWithGroups): Matcher[T with String]
This method enables the following syntax:
This method enables the following syntax:
aMatcher and fullyMatch regex ("a(b*)c" withGroup "bb") ^
-
def
regex(regexString: String): Matcher[T with String]
This method enables the following syntax:
This method enables the following syntax:
aMatcher and fullyMatch regex (decimal) ^