Packages

p

utest

framework

package framework

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. trait Executor extends AnyRef
  2. trait Formatter extends AnyRef

    Default implementation of Formatter, also used by the default SBT test framework.

    Default implementation of Formatter, also used by the default SBT test framework. Allows some degree of customization of the formatted test results.

  3. sealed trait HTree[+N, +L] extends AnyRef

    An immutable tree where the middle-nodes and leaf-nodes each contain different sorts of data, marked by the type params N and L

  4. case class Result(name: String, value: Try[Any], milliDuration: Long) extends Product with Serializable

    A single test's result after execution.

    A single test's result after execution. Any exception thrown or value returned by the test is stored in value. The value returned can be used in another test, which adds a dependency between them.

  5. class TestCallTree extends AnyRef

    The executable portion of a tree of tests.

    The executable portion of a tree of tests. Each node contains an executable, which when run either returns a Left(result) or a Right(sequence) of child nodes which you can execute.

  6. case class TestPath(value: Seq[String]) extends Product with Serializable
  7. case class Tree[+T](value: T, children: Tree[T]*) extends Product with Serializable

    An immutable tree with each node containing a value, and a Seq of children.

    An immutable tree with each node containing a value, and a Seq of children. Provides all normal Seq functionality as well as some tree specific methods.

Value Members

  1. object DefaultFormatters
  2. object ExecutionContext
  3. object Executor extends Executor
  4. object Formatter extends Formatter
  5. object HTree
  6. object StackMarker

    Wrapper-functions that can be used to mark parts of the callstack that are meant to be filtered out later.

  7. object TestPath extends Serializable

Ungrouped