Companion object that facilitates the importing of Snapshots members as
an alternative to mixing it in. One use case is to import Snapshots members so you can use
them in the Scala interpreter:
$scala -classpath scalatest.jar
Welcome to Scala version 2.10.3.final (Java HotSpot(TM) Client VM, Java xxxxxx).
Type in expressions to have them evaluated.
Type :help for more information.
scala> import org.scalactic.Snapshots._
import org.scalatest.Snapshots._
scala> val a = 8
a: Int = 8
scala> snap(a)
res0: scala.collection.immutable.Vector[org.scalactic.Snapshot] = Vector(a = 8)
Companion object that facilitates the importing of
Snapshots
members as an alternative to mixing it in. One use case is to importSnapshots
members so you can use them in the Scala interpreter: