org.scalatest.matchers.MustMatchers
This method enables syntax such as the following:
This method enables syntax such as the following:
string must not have length (3)
^
This method enables syntax such as the following:
This method enables syntax such as the following:
string must fullyMatch regex ("""(-)?(\d+)(\.\d*)?""")
^
This method enables syntax such as the following:
This method enables syntax such as the following:
string must endWith regex ("world")
^
This method enables syntax such as the following:
This method enables syntax such as the following:
string must startWith regex ("hello")
^
This method enables syntax such as the following:
This method enables syntax such as the following:
string must include regex ("hi")
^
This method enables syntax such as the following:
This method enables syntax such as the following:
string must have length (3)
^
This method enables syntax such as the following:
This method enables syntax such as the following:
string must be theSameInstanceAs anotherObject ^
This method enables syntax such as the following:
This method enables syntax such as the following:
string must equal ("hi")
^
Supports the registration of subject descriptions with after words
in WordSpec
and org.scalatest.fixture.WordSpec
.
Supports the registration of subject descriptions with after words
in WordSpec
and org.scalatest.fixture.WordSpec
.
For example, this method enables syntax such as the following in WordSpec
and org.scalatest.fixture.WordSpec
:
def provide = afterWord("provide")
"The ScalaTest Matchers DSL" must provide { ^
WordSpec
passes in a function via the implicit parameter that takes
two strings and a ResultOfAfterWordApplication
and results in Unit
. This method
simply invokes this function, passing in left, the verb string
"must"
, and the ResultOfAfterWordApplication
passed to must
.
Supports the registration of subject descriptions in WordSpec
and org.scalatest.fixture.WordSpec
.
Supports the registration of subject descriptions in WordSpec
and org.scalatest.fixture.WordSpec
.
For example, this method enables syntax such as the following in WordSpec
and org.scalatest.fixture.WordSpec
:
"A Stack (when empty)" must { ...
^
WordSpec
passes in a function via the implicit parameter of type StringVerbBlockRegistration
,
a function that takes two strings and a no-arg function and results in Unit
. This method
simply invokes this function, passing in left, the verb string
"must"
, and the right by-name parameter transformed into a
no-arg function.
Supports shared test registration in FlatSpec
and org.scalatest.fixture.FlatSpec
.
Supports shared test registration in FlatSpec
and org.scalatest.fixture.FlatSpec
.
For example, this method enables syntax such as the following in FlatSpec
and org.scalatest.fixture.FlatSpec
:
"A Stack (with one item)" must behave like nonEmptyStack(stackWithOneItem, lastValuePushed)
^
FlatSpec
and org.scalatest.fixture.FlatSpec
passes in a function via the implicit parameter that takes
a string and results in a BehaveWord
. This method
simply invokes this function, passing in left, and returns the result.
Supports test registration in FlatSpec
and org.scalatest.fixture.FlatSpec
.
Supports test registration in FlatSpec
and org.scalatest.fixture.FlatSpec
.
For example, this method enables syntax such as the following in FlatSpec
and org.scalatest.fixture.FlatSpec
:
"A Stack (when empty)" must "be empty" in { ... } ^
FlatSpec
passes in a function via the implicit parameter that takes
three strings and results in a ResultOfStringPassedToVerb
. This method
simply invokes this function, passing in left, the verb string
"must"
, and right, and returns the result.
This class is part of the ScalaTest matchers DSL. Please see the documentation for
MustMatchers
orShouldMatchers
for an overview of the matchers DSL.This class is used in conjunction with an implicit conversion to enable
must
methods to be invoked onString
s.