This method enables syntax such as the following:
This method enables syntax such as the following:
string should compile ^
This method enables syntax such as the following:
This method enables syntax such as the following:
string should fullyMatch regex ("""(-)?(\d+)(\.\d*)?""") ^
Supports the registration of subject descriptions with after words
in WordSpec
and fixture.WordSpec
.
Supports the registration of subject descriptions with after words
in WordSpec
and fixture.WordSpec
.
For example, this method enables syntax such as the following in WordSpec
and fixture.WordSpec
:
def provide = afterWord("provide") "The ScalaTest Matchers DSL" should 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 leftSideString, the verb string
"should"
, and the ResultOfAfterWordApplication
passed to should
.
Supports the registration of subject descriptions in WordSpec
and fixture.WordSpec
.
Supports the registration of subject descriptions in WordSpec
and fixture.WordSpec
.
For example, this method enables syntax such as the following in WordSpec
and fixture.WordSpec
:
"A Stack (when empty)" should { ... ^
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 leftSideString, the verb string
"should"
, and the right by-name parameter transformed into a
no-arg function.
Supports shared test registration in FlatSpec
and fixture.FlatSpec
.
Supports shared test registration in FlatSpec
and fixture.FlatSpec
.
For example, this method enables syntax such as the following in FlatSpec
and fixture.FlatSpec
:
"A Stack (with one item)" should behave like nonEmptyStack(stackWithOneItem, lastValuePushed) ^
FlatSpec
and 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 leftSideString, and returns the result.
Supports test registration in FlatSpec
and fixture.FlatSpec
.
Supports test registration in FlatSpec
and fixture.FlatSpec
.
For example, this method enables syntax such as the following in FlatSpec
and fixture.FlatSpec
:
"A Stack (when empty)" should "be empty" in { ... } ^
FlatSpec
passes in a StringVerbStringInvocation via the implicit parameter that takes
three strings and results in a ResultOfStringPassedToVerb
. This method
simply invokes this function, passing in leftSideString, the verb string
"should"
, and right, and returns the result.
This method enables syntax such as the following:
This method enables syntax such as the following:
string should endWith regex ("world") ^
This method enables syntax such as the following:
This method enables syntax such as the following:
string should startWith regex ("hello") ^
This method enables syntax such as the following:
This method enables syntax such as the following:
string should include regex ("hi") ^
This method enables syntax such as the following:
This method enables syntax such as the following:
file should not (exist) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
file should exist ^
This method enables syntax such as the following:
This method enables syntax such as the following:
xs should contain oneOf (1, 2, 3) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result should have length (3) ^ result should have size (3) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result should be a aMatcher ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result should === (100 +- 1) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
a should === (b) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result should not equal (3) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result should (equal (expected) and have length 3) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result should equal (3) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result should be (3) ^
This method enables the following syntax, where excellentRead
refers to a BePropertyMatcher[Book]
:
This method enables the following syntax, where excellentRead
refers to a BePropertyMatcher[Book]
:
programmingInScala shouldBe an (excellentRead) ^
This method enables the following syntax, where goodRead
refers to a BePropertyMatcher[Book]
:
This method enables the following syntax, where goodRead
refers to a BePropertyMatcher[Book]
:
programmingInScala shouldBe a (goodRead) ^
This method enables the following syntax, where excellentRead
refers to a BePropertyMatcher[Book]
:
This method enables the following syntax, where excellentRead
refers to a BePropertyMatcher[Book]
:
programmingInScala shouldBe excellentRead ^
This method enables the following syntax:
This method enables the following syntax:
list shouldBe an ('empty) ^
This method enables the following syntax:
This method enables the following syntax:
list shouldBe a ('empty) ^
This method enables the following syntax:
This method enables the following syntax:
list shouldBe 'empty ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldBe theSameInstanceAs (anotherObject) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldBe null ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldBe defined ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldBe empty ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldBe writable ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldBe readable ^
This method enables syntax such as the following:
This method enables syntax such as the following:
aDouble shouldBe an [Book] ^
This method enables syntax such as the following:
This method enables syntax such as the following:
aDouble shouldBe a [Book] ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldBe sorted ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldBe 7.1 +- 0.2 ^
This method enables the following syntax, where odd
refers to a BeMatcher[Int]
:
This method enables the following syntax, where odd
refers to a BeMatcher[Int]
:
testing 1 shouldBe odd ^
This method enables syntax such as the following:
This method enables syntax such as the following:
8 shouldBe >= (7) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
5 shouldBe <= (7) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
8 shouldBe > (7) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
5 shouldBe < (7) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
aDouble shouldBe 8.8 ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldEqual null ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldEqual 7.1 +- 0.2 ^
This method enables syntax such as the following:
This method enables syntax such as the following:
a shouldEqual b ^
This method enables syntax such as the following:
This method enables syntax such as the following:
string shouldNot typeCheck ^
This method enables syntax such as the following:
This method enables syntax such as the following:
string shouldNot compile ^
This method enables syntax such as the following:
This method enables syntax such as the following:
string shouldNot fullyMatch regex ("""(-)?(\d+)(\.\d*)?""") ^
This method enables syntax such as the following:
This method enables syntax such as the following:
string shouldNot include regex ("hi") ^
This method enables syntax such as the following:
This method enables syntax such as the following:
string shouldNot endWith regex ("world") ^
This method enables syntax such as the following:
This method enables syntax such as the following:
string shouldNot startWith regex ("hello") ^
This method enables syntax such as the following:
This method enables syntax such as the following:
file shouldNot exist ^
This method enables syntax such as the following:
This method enables syntax such as the following:
xs shouldNot contain (oneOf (1, 2, 3)) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldNot have length (3) ^ result shouldNot have size (3) ^ exception shouldNot have message ("file not found") ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldNot (be readable) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldNot (be (3)) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
result shouldNot be (3) ^
This method enables syntax such as the following:
This method enables syntax such as the following:
string should fullyMatch regex ("a(b*)c" withGroup "bb") ^
This method enables syntax such as the following:
This method enables syntax such as the following:
string should fullyMatch regex ("a(b*)(c*)" withGroups ("bb", "cc")) ^
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 used in conjunction with an implicit conversion to enable
should
methods to be invoked onString
s.