ResultOfFullyMatchWordForCollectedString

org.scalatest.matchers.must.Matchers.ResultOfFullyMatchWordForCollectedString
final class ResultOfFullyMatchWordForCollectedString(collected: Collected, xs: Iterable[String], original: Any, mustBeTrue: Boolean, prettifier: Prettifier, pos: Position)

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

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

infix def regex(rightRegexString: String): Assertion

This method enables the following syntax:

This method enables the following syntax:

all(string) must fullMatch regex ("Hel*o world")
                            ^

Attributes

infix def regex(regexWithGroups: RegexWithGroups): Assertion

This method enables the following syntax:

This method enables the following syntax:

all(string) must fullMatch regex ("a(b*)c" withGroup "bb")
                            ^

Attributes

infix def regex(rightRegex: Regex): Assertion

This method enables the following syntax:

This method enables the following syntax:

all(string) must fullymatch regex ("Hel*o world".r)
                             ^

Attributes

override def toString: String

Overrides to return pretty toString.

Overrides to return pretty toString.

Attributes

Returns

"ResultOfFullyMatchWordForCollectedString([collected], [xs], [mustBeTrue])"

Definition Classes
Any