trait
ShouldVerb
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
convertToStringShouldWrapper
(o: String): StringShouldWrapperForVerb
-
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
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
clone
(): AnyRef
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
hashCode
(): Int
-
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 Any
Value Members
-
def
!=
(arg0: Any): Boolean
-
def
==
(arg0: Any): Boolean
-
def
asInstanceOf
[T0]
: T0
-
def
isInstanceOf
[T0]
: Boolean
Provides an implicit conversion that adds
shouldmethods toStringto support the syntax ofFlatSpec,WordSpec,fixture.FlatSpec, andfixture.WordSpec.For example, this trait enables syntax such as the following test registration in
FlatSpecandfixture.FlatSpec:It also enables syntax such as the following shared test registration in
FlatSpecandfixture.FlatSpec:"A Stack (with one item)" should behave like nonEmptyStack(stackWithOneItem, lastValuePushed) ^In addition, it supports the registration of subject descriptions in
WordSpecandfixture.WordSpec, such as:"A Stack (when empty)" should { ... ^And finally, it also supportds the registration of subject descriptions with after words in
WordSpecandfixture.WordSpec. For example:The reason this implicit conversion is provided in a separate trait, instead of being provided directly in
FlatSpec,WordSpec,fixture.FlatSpec, andfixture.WordSpec, is because an implicit conversion provided directly would conflict with the implicit conversion that providesshouldmethods onStringin theShouldMatcherstrait. By contrast, there is no conflict with the separateShouldVerbtrait approach, because:FlatSpec,WordSpec,fixture.FlatSpec, andfixture.WordSpecmix inShouldVerbdirectly, andShouldMatchersextendsShouldVerb, overriding theconvertToStringShouldWrapperimplicit conversion function.So whether or not a
FlatSpec,WordSpec,fixture.FlatSpec, orfixture.WordSpecmixes inShouldMatchers, there will only be one implicit conversion in scope that addsshouldmethods toStrings.Also, because the class of the result of the overriding
convertToStringShouldWrapperimplicit conversion method provided inShouldMatchersextends this trait'sStringShouldWrapperForVerbclass, the four uses ofshouldprovided here are still available. These fourshouldare in fact available to any class that mixes inShouldMatchers, but each takes an implicit parameter that is provided only inFlatSpecandfixture.FlatSpec, orWordSpecandfixture.WordSpec.