ScalaTest 1.0
|
|
final
class
ListMustWrapper[T](left : scala.List[T])
extends
AnyRefMustMatchers
or ShouldMatchers
for an overview of
the matchers DSL.
This class is used in conjunction with an implicit conversion to enable must
methods to
be invoked on objects of type scala.List[T]
.
Method Summary | |
def
|
must
(beWord : BeWord) : ResultOfBeWordForAnyRef[scala.List[T]]
This method enables syntax such as the following:
list must be theSameInstanceAs anotherObject ^ |
def
|
must
(notWord : NotWord) : ResultOfNotWordForSeq[T, scala.List[T]]
This method enables syntax such as the following:
list must not have length (3) ^ |
def
|
must
(haveWord : HaveWord) : ResultOfHaveWordForSeq[T]
This method enables syntax such as the following:
list must have length (3) ^ |
def
|
must
(rightMatcher : Matcher[scala.List[T]]) : Unit
This method enables syntax such as the following:
list must equal (List(1, 2, 3)) ^ |
Methods inherited from AnyRef | |
getClass, hashCode, equals, clone, toString, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized |
Methods inherited from Any | |
==, !=, isInstanceOf, asInstanceOf |
Method Details |
def
must(rightMatcher : Matcher[scala.List[T]]) : Unit
list must equal (List(1, 2, 3)) ^
def
must(beWord : BeWord) : ResultOfBeWordForAnyRef[scala.List[T]]
list must be theSameInstanceAs anotherObject ^
def
must(haveWord : HaveWord) : ResultOfHaveWordForSeq[T]
list must have length (3) ^
def
must(notWord : NotWord) : ResultOfNotWordForSeq[T, scala.List[T]]
list must not have length (3) ^
ScalaTest 1.0
|
|