object Snapshots extends Snapshots
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)
- Source
- Snapshots.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Snapshots
- Snapshots
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- macro def snap(expressions: Any*): SnapshotSeq
Snap the given expressions.
Snap the given expressions.
- expressions
expressions to be snapped
- returns
an
IndexedSeq
ofSnapshot
for the given expressions.
- Definition Classes
- Snapshots