ResultOfFullyMatchWordForString

final class ResultOfFullyMatchWordForString(left: String, shouldBeTrue: Boolean, 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.

class Object
trait Matchable
class Any

Value members

Concrete methods

infix def regex(rightRegexString: String): Assertion

This method enables the following syntax:

This method enables the following syntax:

string should fullMatch regex ("Hel*o world")
                       ^
infix def regex(regexWithGroups: RegexWithGroups): Assertion

This method enables the following syntax:

This method enables the following syntax:

string should fullMatch regex ("a(b*)c" withGroup "bb")
                       ^
infix def regex(rightRegex: Regex): Assertion

This method enables the following syntax:

This method enables the following syntax:

string should fullymatch regex ("Hel*o world".r)
                        ^
override def toString: String

Overrides to return pretty toString.

Overrides to return pretty toString.

Returns:

"ResultOfFullyMatchWordForString([left], [shouldBeTrue])"

Definition Classes
Any