Companion object that facilitates the importing of MustMatchers
members as
an alternative to mixing it the trait. One use case is to import MustMatchers
members so you can use
them in the Scala interpreter:
$scala -classpath scalatest.jar
Welcome to Scala version 2.7.3.final (Java HotSpot(TM) Client VM, Java 1.5.0_16).
Type in expressions to have them evaluated.
Type :help for more information.
scala> import org.scalatest.matchers.MustMatchers._
import org.scalatest.matchers.MustMatchers._
scala> 1 must equal (2)
org.scalatest.TestFailedException: 1 did not equal 2
at org.scalatest.matchers.Helper$.newTestFailedException(Matchers.scala:40)
at org.scalatest.matchers.MustMatchers$MustMethodHelper$.mustMatcher(MustMatchers.scala:826)
at org.scalatest.matchers.MustMatchers$IntMustWrapper.must(MustMatchers.scala:1123)
at .(:9)
at .()
at RequestR...
scala> "hello, world" must startWith ("hello")
scala> 7 must (be >= (3) and not be <= (7))
org.scalatest.TestFailedException: 7 was greater than or equal to 3, but 7 was less than or equal to 7
at org.scalatest.matchers.Helper$.newTestFailedException(Matchers.scala:40)
at org.scalatest.matchers.MustMatchers$MustMethodHelper$.mustMatcher(MustMatchers.scala:826)
at org.scalatest.matchers.MustMatchers$IntMustWrapper.must(MustMatchers.scala:1123)
at .(...