org.scalatest.prop.Tables
See theTables companion trait
Companion object that facilitates the importing of Tables members as an alternative to mixing it in. One use case is to import Tables members so you can use them in the Scala interpreter:
Welcome to Scala version 2.8.0.final (Java HotSpot(TM) 64-Bit Server VM, Java 1.6.0_22).
Type in expressions to have them evaluated.
Type :help for more information.
scala> import org.scalatest.prop.Tables._
import org.scalatest.prop.Tables._
scala> val examples =
| Table(
| ("a", "b"),
| ( 1, 2),
| ( 3, 4)
| )
examples: org.scalatest.prop.TableFor2[Int,Int] = TableFor2((1,2), (3,4))
Attributes
Members list
In this article