utest

framework

package framework

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.

  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.

  5. class TestCallTree extends AnyRef

    The executable portion of a tree of tests.

  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.

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