trait
WillVerb extends AnyRef
Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
implicit
def
convertToStringWillWrapper(o: String): StringWillWrapperForVerb
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
Provides an implicit conversion that adds
willmethods 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:"A Stack (when empty)" will "be empty" in { ... } ^It also enables syntax such as the following shared test registration in
FlatSpecandfixture.FlatSpec:"A Stack (with one item)" will behave like nonEmptyStack(stackWithOneItem, lastValuePushed) ^In addition, it supports the registration of subject descriptions in
WordSpecandfixture.WordSpec, such as:"A Stack (when empty)" will { ... ^And finally, it also supportds the registration of subject descriptions with after words in
WordSpecandfixture.WordSpec. For example:def provide = afterWord("provide") "The ScalaTest Matchers DSL" will provide { ^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 provideswillmethods onStringin theMatcherstrait. By contrast, there is no conflict with the separateWillVerbtrait approach, because:FlatSpec,WordSpec,fixture.FlatSpec, andfixture.WordSpecmix inWillVerbdirectly, andMatchersextendsWillVerb, overriding theconvertToStringWillWrapperimplicit conversion function.So whether or not a
FlatSpec,WordSpec,fixture.FlatSpec, orfixture.WordSpecmixes inMatchers, there will only be one implicit conversion in scope that addswillmethods toStrings.Also, because the class of the result of the overriding
convertToStringWillWrapperimplicit conversion method provided inMatchersextends this trait'sStringWillWrapperForVerbclass, the four uses ofwillprovided here are still available. These fourwillare in fact available to any class that mixes inMatchers, but each takes an implicit parameter that is provided only inFlatSpecandfixture.FlatSpec, orWordSpecandfixture.WordSpec.