trait
CanVerb
extends AnyRef
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
def
asInstanceOf
[T0]
: T0
-
def
clone
(): AnyRef
-
implicit def
convertToStringCanWrapper
(o: String): StringCanWrapperForVerb
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
hashCode
(): Int
-
def
isInstanceOf
[T0]
: Boolean
-
def
ne
(arg0: AnyRef): Boolean
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
def
toString
(): String
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
Provides an implicit conversion that adds
canmethods toStringto support the syntax ofFlatSpec,WordSpec,FixtureFlatSpec, andFixtureWordSpec.For example, this trait enables syntax such as the following test registration in
FlatSpecandFixtureFlatSpec:"A Stack (when empty)" can "be empty" in { ... } ^It also enables syntax such as the following shared test registration in
FlatSpecandFixtureFlatSpec:"A Stack (with one item)" can behave like nonEmptyStack(stackWithOneItem, lastValuePushed) ^In addition, it supports the registration of subject descriptions in
WordSpecandFixtureWordSpec, such as:"A Stack (when empty)" can { ... ^And finally, it also supportds the registration of subject descriptions with after words in
WordSpecandFixtureWordSpec. For example:def provide = afterWord("provide") "The ScalaTest Matchers DSL" can provide { ^The reason this implicit conversion is provided in a separate trait, instead of being provided directly in
FlatSpec,WordSpec,FixtureFlatSpec, andFixtureWordSpec, is primarily for design symmetry withShouldVerbandMustVerb. BothShouldVerbandMustVerbmust exist as a separate trait because an implicit conversion provided directly would conflict with the implicit conversion that providesshouldormustmethods onStringin theShouldMatchersandMustMatcherstraits.