Packages

object Stepwise extends Serializable

Companion object to class Stepwise that offers an apply factory method for creating a Stepwise instance.

One use case for this object is to run multiple specification-style suites in the Scala interpreter, like this:

scala> Stepwise(new MyFirstSuite, new MyNextSuite).execute()

Source
Stepwise.scala
Linear Supertypes
Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Stepwise
  2. Serializable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def apply(suitesToNest: Suite*): Stepwise

    Factory method for creating a Stepwise instance.