Package

utest

framework

Permalink

package framework

Visibility
  1. Public
  2. All

Type Members

  1. trait Executor extends AnyRef

    Permalink
  2. trait Formatter extends AnyRef

    Permalink

    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

    Permalink

    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

    Permalink

    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

    Permalink

    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

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

    Permalink

    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

    Permalink
  2. object ExecutionContext

    Permalink
  3. object Executor extends Executor

    Permalink
  4. object Formatter extends Formatter

    Permalink
  5. object HTree

    Permalink
  6. object StackMarker

    Permalink

    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

    Permalink

Ungrouped